# File lib/specinfra/host_inventory/block_device.rb, line 9
      def get
        cmd = backend.command.get(:get_inventory_block_device)
        ret = backend.run_command(cmd)
        if ret.exit_status == 0
          parse(ret.stdout)
        else
          nil
        end
      end