# File lib/fission/vm.rb, line 267
    def guestos
      config_response = conf_file_data
      return config_response unless config_response.successful?

      response = Response.new :code => 0, :data => {}
      response.data = config_response.data.fetch 'guestOS', ''
      response
    end