Sha256: 749a176852ed32c4c8caec6089bad2194e2fff9fb9450c12ab7660b3322cc6c8

Contents?: true

Size: 979 Bytes

Versions: 4

Compression:

Stored size: 979 Bytes

Contents

require 'log4r'

require 'vagrant/util/platform'

require File.expand_path('../pd_10', __FILE__)

module VagrantPlugins
  module Parallels
    module Driver
      # Driver for Parallels Desktop 11.
      class PD_11 < PD_10
        def initialize(uuid)
          super(uuid)

          @logger = Log4r::Logger.new('vagrant_parallels::driver::pd_11')
        end

        def create_snapshot(uuid, options)
          args = ['snapshot', uuid]
          args.concat(['--name', options[:name]]) if options[:name]
          args.concat(['--description', options[:desc]]) if options[:desc]

          stdout = execute_prlctl(*args)
          if stdout =~ /\{([\w-]+)\}/
            return $1
          end

          raise Errors::SnapshotIdNotDetected, stdout: stdout
        end

        def read_current_snapshot(uuid)
          if execute_prlctl('snapshot-list', uuid) =~ /\*\{([\w-]+)\}/
            return $1
          end

          nil
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-parallels-1.4.2 lib/vagrant-parallels/driver/pd_11.rb
vagrant-parallels-1.4.1 lib/vagrant-parallels/driver/pd_11.rb
vagrant-parallels-1.4.0 lib/vagrant-parallels/driver/pd_11.rb
vagrant-parallels-1.4.0.rc1 lib/vagrant-parallels/driver/pd_11.rb