# File lib/specinfra/host_inventory/hostname.rb, line 4
      def get
        cmd = backend.command.get(:get_inventory_hostname)
        result = backend.run_command(cmd)

        if result.exit_status == 0
          result.stdout.strip
        else
          nil
        end
      end