vagrant-parallels 0.2.2.rc1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +89 -46
- data/Rakefile +0 -3
- data/lib/vagrant-parallels/action/network.rb +8 -10
- data/lib/vagrant-parallels/driver/pd_8.rb +12 -15
- data/lib/vagrant-parallels/driver/pd_9.rb +12 -15
- data/lib/vagrant-parallels/guest_cap/linux/mount_parallels_shared_folder.rb +16 -6
- data/lib/vagrant-parallels/version.rb +1 -1
- data/test/unit/support/shared/pd_driver_examples.rb +10 -12
- data/vagrant-parallels.gemspec +1 -1
- metadata +4 -5
- data/debug.log +0 -941
@@ -34,7 +34,7 @@ shared_examples "parallels desktop driver" do |options|
|
|
34
34
|
let(:hostonly_iface) {'vnic12'}
|
35
35
|
it "creates host-only NIC with dhcp server configured" do
|
36
36
|
vnic_opts = {
|
37
|
-
:
|
37
|
+
:network_id => 'vagrant_vnic8',
|
38
38
|
:adapter_ip => '11.11.11.11',
|
39
39
|
:netmask => '255.255.252.0',
|
40
40
|
:dhcp => {
|
@@ -45,12 +45,12 @@ shared_examples "parallels desktop driver" do |options|
|
|
45
45
|
}
|
46
46
|
|
47
47
|
subprocess.should_receive(:execute).
|
48
|
-
with("prlsrvctl", "net", "add", vnic_opts[:
|
48
|
+
with("prlsrvctl", "net", "add", vnic_opts[:network_id],
|
49
49
|
"--type", "host-only", an_instance_of(Hash)).
|
50
50
|
and_return(subprocess_result(exit_code: 0))
|
51
51
|
|
52
52
|
subprocess.should_receive(:execute).
|
53
|
-
with("prlsrvctl", "net", "set", vnic_opts[:
|
53
|
+
with("prlsrvctl", "net", "set", vnic_opts[:network_id],
|
54
54
|
"--ip", "#{vnic_opts[:adapter_ip]}/#{vnic_opts[:netmask]}",
|
55
55
|
"--dhcp-ip", vnic_opts[:dhcp][:ip],
|
56
56
|
"--ip-scope-start", vnic_opts[:dhcp][:lower],
|
@@ -59,40 +59,38 @@ shared_examples "parallels desktop driver" do |options|
|
|
59
59
|
|
60
60
|
interface = subject.create_host_only_network(vnic_opts)
|
61
61
|
|
62
|
-
interface.should include(:name => vnic_opts[:name])
|
63
62
|
interface.should include(:ip => vnic_opts[:adapter_ip])
|
64
63
|
interface.should include(:netmask => vnic_opts[:netmask])
|
65
64
|
interface.should include(:dhcp => vnic_opts[:dhcp])
|
66
|
-
interface.should include(:
|
67
|
-
interface[:
|
65
|
+
interface.should include(:name => hostonly_iface)
|
66
|
+
interface[:name].should =~ /^(vnic(\d+))$/
|
68
67
|
end
|
69
68
|
|
70
69
|
it "creates host-only NIC without dhcp" do
|
71
70
|
vnic_options = {
|
72
|
-
:
|
71
|
+
:network_id => 'vagrant_vnic3',
|
73
72
|
:adapter_ip => '22.22.22.22',
|
74
73
|
:netmask => '255.255.254.0',
|
75
74
|
}
|
76
75
|
|
77
76
|
subprocess.should_receive(:execute).
|
78
|
-
with("prlsrvctl", "net", "add", vnic_options[:
|
77
|
+
with("prlsrvctl", "net", "add", vnic_options[:network_id],
|
79
78
|
"--type", "host-only", an_instance_of(Hash)).
|
80
79
|
and_return(subprocess_result(exit_code: 0))
|
81
80
|
|
82
81
|
subprocess.should_receive(:execute).
|
83
|
-
with("prlsrvctl", "net", "set", vnic_options[:
|
82
|
+
with("prlsrvctl", "net", "set", vnic_options[:network_id],
|
84
83
|
"--ip", "#{vnic_options[:adapter_ip]}/#{vnic_options[:netmask]}",
|
85
84
|
an_instance_of(Hash)).
|
86
85
|
and_return(subprocess_result(exit_code: 0))
|
87
86
|
|
88
87
|
interface = subject.create_host_only_network(vnic_options)
|
89
88
|
|
90
|
-
interface.should include(:name => vnic_options[:name])
|
91
89
|
interface.should include(:ip => vnic_options[:adapter_ip])
|
92
90
|
interface.should include(:netmask => vnic_options[:netmask])
|
93
91
|
interface.should include(:dhcp => nil)
|
94
|
-
interface.should include(:
|
95
|
-
interface[:
|
92
|
+
interface.should include(:name => hostonly_iface)
|
93
|
+
interface[:name].should =~ /^(vnic(\d+))$/
|
96
94
|
end
|
97
95
|
end
|
98
96
|
|
data/vagrant-parallels.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.add_development_dependency "bundler", "~> 1.5.2"
|
20
20
|
spec.add_development_dependency "rake"
|
21
21
|
spec.add_development_dependency "rspec", "~> 2.14.0"
|
22
|
-
spec.add_development_dependency "i18n-tasks", "~> 0.
|
22
|
+
spec.add_development_dependency "i18n-tasks", "~> 0.3.9"
|
23
23
|
|
24
24
|
# The following block of code determines the files that should be included
|
25
25
|
# in the gem. It does this by reading all the files in the directory where
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-parallels
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.2
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mikhail Zholobov
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-03-
|
12
|
+
date: 2014-03-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -59,14 +59,14 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - ~>
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.
|
62
|
+
version: 0.3.9
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.
|
69
|
+
version: 0.3.9
|
70
70
|
description: Enables Vagrant to manage Parallels virtual machines.
|
71
71
|
email:
|
72
72
|
- mzholobov@parallels.com
|
@@ -76,7 +76,6 @@ extensions: []
|
|
76
76
|
extra_rdoc_files: []
|
77
77
|
files:
|
78
78
|
- config/i18n-tasks.yml.erb
|
79
|
-
- debug.log
|
80
79
|
- Gemfile
|
81
80
|
- Gemfile.lock
|
82
81
|
- lib/vagrant-parallels/action/boot.rb
|
data/debug.log
DELETED
@@ -1,941 +0,0 @@
|
|
1
|
-
INFO global: Vagrant version: 1.4.1
|
2
|
-
INFO global: Ruby version: 2.0.0
|
3
|
-
INFO global: RubyGems version: 2.0.14
|
4
|
-
INFO global: VAGRANT_DEFAULT_PROVIDER="parallels"
|
5
|
-
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/Applications/Vagrant/bin/../embedded"
|
6
|
-
INFO global: VAGRANT_INSTALLER_VERSION="2"
|
7
|
-
INFO global: VAGRANT_DETECTED_OS="Darwin"
|
8
|
-
INFO global: VAGRANT_INSTALLER_ENV="1"
|
9
|
-
INFO global: VAGRANT_LOG="debug"
|
10
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/box/plugin.rb
|
11
|
-
INFO manager: Registered plugin: box command
|
12
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/destroy/plugin.rb
|
13
|
-
INFO manager: Registered plugin: destroy command
|
14
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/halt/plugin.rb
|
15
|
-
INFO manager: Registered plugin: halt command
|
16
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/help/plugin.rb
|
17
|
-
INFO manager: Registered plugin: help command
|
18
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/init/plugin.rb
|
19
|
-
INFO manager: Registered plugin: init command
|
20
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/package/plugin.rb
|
21
|
-
INFO manager: Registered plugin: package command
|
22
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/plugin/plugin.rb
|
23
|
-
INFO manager: Registered plugin: plugin command
|
24
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/provision/plugin.rb
|
25
|
-
INFO manager: Registered plugin: provision command
|
26
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/reload/plugin.rb
|
27
|
-
INFO manager: Registered plugin: reload command
|
28
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/resume/plugin.rb
|
29
|
-
INFO manager: Registered plugin: resume command
|
30
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/ssh/plugin.rb
|
31
|
-
INFO manager: Registered plugin: ssh command
|
32
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/ssh_config/plugin.rb
|
33
|
-
INFO manager: Registered plugin: ssh-config command
|
34
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/status/plugin.rb
|
35
|
-
INFO manager: Registered plugin: status command
|
36
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/suspend/plugin.rb
|
37
|
-
INFO manager: Registered plugin: suspend command
|
38
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/commands/up/plugin.rb
|
39
|
-
INFO manager: Registered plugin: up command
|
40
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/communicators/ssh/plugin.rb
|
41
|
-
INFO manager: Registered plugin: ssh communicator
|
42
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/arch/plugin.rb
|
43
|
-
INFO manager: Registered plugin: Arch guest
|
44
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/coreos/plugin.rb
|
45
|
-
INFO manager: Registered plugin: CoreOS guest
|
46
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/darwin/plugin.rb
|
47
|
-
INFO manager: Registered plugin: Darwin guest
|
48
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/debian/plugin.rb
|
49
|
-
INFO manager: Registered plugin: Debian guest
|
50
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/esxi/plugin.rb
|
51
|
-
INFO manager: Registered plugin: ESXi guest.
|
52
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/fedora/plugin.rb
|
53
|
-
INFO manager: Registered plugin: Fedora guest
|
54
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/freebsd/plugin.rb
|
55
|
-
INFO manager: Registered plugin: FreeBSD guest
|
56
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/gentoo/plugin.rb
|
57
|
-
INFO manager: Registered plugin: Gentoo guest
|
58
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/linux/plugin.rb
|
59
|
-
INFO manager: Registered plugin: Linux guest.
|
60
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/omnios/plugin.rb
|
61
|
-
INFO manager: Registered plugin: OmniOS guest.
|
62
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/openbsd/plugin.rb
|
63
|
-
INFO manager: Registered plugin: OpenBSD guest
|
64
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/pld/plugin.rb
|
65
|
-
INFO manager: Registered plugin: PLD Linux guest
|
66
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/redhat/plugin.rb
|
67
|
-
INFO manager: Registered plugin: RedHat guest
|
68
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/solaris/plugin.rb
|
69
|
-
INFO manager: Registered plugin: Solaris guest.
|
70
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/solaris11/plugin.rb
|
71
|
-
INFO manager: Registered plugin: Solaris 11 guest.
|
72
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/suse/plugin.rb
|
73
|
-
INFO manager: Registered plugin: SUSE guest
|
74
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/guests/ubuntu/plugin.rb
|
75
|
-
INFO manager: Registered plugin: Ubuntu guest
|
76
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/arch/plugin.rb
|
77
|
-
INFO manager: Registered plugin: Arch host
|
78
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/bsd/plugin.rb
|
79
|
-
INFO manager: Registered plugin: BSD host
|
80
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/freebsd/plugin.rb
|
81
|
-
INFO manager: Registered plugin: FreeBSD host
|
82
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/gentoo/plugin.rb
|
83
|
-
INFO manager: Registered plugin: Gentoo host
|
84
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/linux/plugin.rb
|
85
|
-
INFO manager: Registered plugin: Linux host
|
86
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/opensuse/plugin.rb
|
87
|
-
INFO manager: Registered plugin: OpenSUSE host
|
88
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/redhat/plugin.rb
|
89
|
-
INFO manager: Registered plugin: Red Hat host
|
90
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/slackware/plugin.rb
|
91
|
-
INFO manager: Registered plugin: Slackware host
|
92
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/windows/plugin.rb
|
93
|
-
INFO manager: Registered plugin: Windows host
|
94
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/kernel_v1/plugin.rb
|
95
|
-
INFO manager: Registered plugin: kernel
|
96
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/kernel_v2/plugin.rb
|
97
|
-
INFO manager: Registered plugin: kernel
|
98
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/providers/virtualbox/plugin.rb
|
99
|
-
INFO manager: Registered plugin: VirtualBox provider
|
100
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/ansible/plugin.rb
|
101
|
-
INFO manager: Registered plugin: ansible
|
102
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/cfengine/plugin.rb
|
103
|
-
INFO manager: Registered plugin: CFEngine Provisioner
|
104
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/chef/plugin.rb
|
105
|
-
INFO manager: Registered plugin: chef
|
106
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/docker/plugin.rb
|
107
|
-
INFO manager: Registered plugin: docker
|
108
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/file/plugin.rb
|
109
|
-
INFO manager: Registered plugin: file
|
110
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/puppet/plugin.rb
|
111
|
-
INFO manager: Registered plugin: puppet
|
112
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/salt/plugin.rb
|
113
|
-
INFO manager: Registered plugin: salt
|
114
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/provisioners/shell/plugin.rb
|
115
|
-
INFO manager: Registered plugin: shell
|
116
|
-
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/synced_folders/nfs/plugin.rb
|
117
|
-
INFO manager: Registered plugin: NFS synced folders
|
118
|
-
INFO vagrant: `vagrant` invoked: ["package", "centos", "--debug"]
|
119
|
-
DEBUG vagrant: Creating Vagrant environment
|
120
|
-
INFO environment: Environment initialized (#<Vagrant::Environment:0x000001012239c0>)
|
121
|
-
INFO environment: - cwd: /Users/legal/Documents/vagrant-parallels
|
122
|
-
INFO environment: Home path: /Users/legal/.vagrant.d
|
123
|
-
INFO environment: Local data path: /Users/legal/Documents/vagrant-parallels/.vagrant
|
124
|
-
DEBUG environment: Creating: /Users/legal/Documents/vagrant-parallels/.vagrant
|
125
|
-
DEBUG environment: Loading plugins from: /Users/legal/.vagrant.d/plugins.json
|
126
|
-
INFO environment: Loading plugin from JSON: vagrant-windows
|
127
|
-
INFO manager: Registered plugin: vagrant-windows
|
128
|
-
INFO environment: Loading plugin from JSON: vagrant-omnibus
|
129
|
-
INFO manager: Registered plugin: vagrant-omnibus
|
130
|
-
INFO environment: Loading plugin from JSON: vagrant-berkshelf
|
131
|
-
INFO manager: Registered plugin: berkshelf
|
132
|
-
INFO environment: Loading plugin from JSON: vagrant-parallels
|
133
|
-
INFO manager: Registered plugin: vagrant-parallels
|
134
|
-
INFO environment: Running hook: environment_plugins_loaded
|
135
|
-
INFO runner: Preparing hooks for middleware sequence...
|
136
|
-
INFO runner: 1 hooks defined.
|
137
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001012916f0>
|
138
|
-
INFO environment: Running hook: environment_load
|
139
|
-
INFO environment: Initializing config...
|
140
|
-
INFO loader: Set :default = "/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/config/default.rb"
|
141
|
-
DEBUG loader: Populating proc cache for "/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/config/default.rb"
|
142
|
-
DEBUG loader: Load procs for pathname: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/config/default.rb
|
143
|
-
INFO loader: Set :root = #<Pathname:/Users/legal/Documents/vagrant-parallels/Vagrantfile>
|
144
|
-
DEBUG loader: Populating proc cache for #<Pathname:/Users/legal/Documents/vagrant-parallels/Vagrantfile>
|
145
|
-
DEBUG loader: Load procs for pathname: /Users/legal/Documents/vagrant-parallels/Vagrantfile
|
146
|
-
INFO loader: Loading configuration in order: [:default, :home, :root]
|
147
|
-
DEBUG loader: Loading from: default (evaluating)
|
148
|
-
DEBUG loader: Loading from: root (evaluating)
|
149
|
-
DEBUG loader: Configuration loaded successfully, finalizing and returning
|
150
|
-
DEBUG hosts: Host path search classes: [VagrantPlugins::HostWindows::Host, VagrantPlugins::HostSlackware::Host, VagrantPlugins::HostRedHat::Host, VagrantPlugins::HostOpenSUSE::Host, VagrantPlugins::HostFreeBSD::Host, VagrantPlugins::HostGentoo::Host, VagrantPlugins::HostArch::Host, VagrantPlugins::HostBSD::Host, VagrantPlugins::HostLinux::Host]
|
151
|
-
INFO hosts: Host class: VagrantPlugins::HostBSD::Host
|
152
|
-
INFO runner: Preparing hooks for middleware sequence...
|
153
|
-
INFO runner: 1 hooks defined.
|
154
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001009edb48>
|
155
|
-
INFO cli: CLI: [] "package" ["centos", "--"]
|
156
|
-
DEBUG cli: Invoking command class: VagrantPlugins::CommandPackage::Command ["centos", "--"]
|
157
|
-
DEBUG command: package options: {}
|
158
|
-
DEBUG command: Getting target VMs for command. Arguments:
|
159
|
-
DEBUG command: -- names: "centos"
|
160
|
-
DEBUG command: -- options: {:single_target=>true}
|
161
|
-
DEBUG command: Finding machine that match name: centos
|
162
|
-
INFO command: Active machine found with name centos. Using provider: parallels
|
163
|
-
INFO environment: Getting machine: centos (parallels)
|
164
|
-
INFO environment: Uncached load of machine.
|
165
|
-
INFO loader: Set :vm_centos = [["2", #<Proc:0x000001049508d0@/Users/legal/Documents/vagrant-parallels/Vagrantfile:10>]]
|
166
|
-
DEBUG loader: Populating proc cache for ["2", #<Proc:0x000001049508d0@/Users/legal/Documents/vagrant-parallels/Vagrantfile:10>]
|
167
|
-
INFO loader: Loading configuration in order: [:default, :home, :root, :vm_centos]
|
168
|
-
DEBUG loader: Loading from: default (cache)
|
169
|
-
DEBUG loader: Loading from: root (cache)
|
170
|
-
DEBUG loader: Loading from: vm_centos (evaluating)
|
171
|
-
DEBUG loader: Configuration loaded successfully, finalizing and returning
|
172
|
-
INFO box_collection: Searching for box: centos-6.5_x64 (parallels) in /Users/legal/.vagrant.d/boxes/centos-6.5_x64/parallels/metadata.json
|
173
|
-
INFO box_collection: Box found: centos-6.5_x64 (parallels)
|
174
|
-
INFO environment: Box exists with Vagrantfile. Reloading machine config.
|
175
|
-
INFO loader: Set :"box_centos-6.5_x64_parallels" = #<Pathname:/Users/legal/.vagrant.d/boxes/centos-6.5_x64/parallels/Vagrantfile>
|
176
|
-
DEBUG loader: Populating proc cache for #<Pathname:/Users/legal/.vagrant.d/boxes/centos-6.5_x64/parallels/Vagrantfile>
|
177
|
-
DEBUG loader: Load procs for pathname: /Users/legal/.vagrant.d/boxes/centos-6.5_x64/parallels/Vagrantfile
|
178
|
-
INFO loader: Loading configuration in order: [:default, :"box_centos-6.5_x64_parallels", :home, :root, :vm_centos]
|
179
|
-
DEBUG loader: Loading from: default (cache)
|
180
|
-
DEBUG loader: Loading from: box_centos-6.5_x64_parallels (evaluating)
|
181
|
-
DEBUG loader: Upgrading config from version 1 to 2
|
182
|
-
DEBUG loader: Upgrading config to version 2
|
183
|
-
DEBUG loader: Upgraded to version 2 with 0 warnings and 0 errors
|
184
|
-
DEBUG loader: Loading from: root (cache)
|
185
|
-
DEBUG loader: Loading from: vm_centos (cache)
|
186
|
-
DEBUG loader: Configuration loaded successfully, finalizing and returning
|
187
|
-
INFO machine: Initializing machine: centos
|
188
|
-
INFO machine: - Provider: VagrantPlugins::Parallels::Provider
|
189
|
-
INFO machine: - Box: #<Vagrant::Box:0x000001016b84b8>
|
190
|
-
INFO machine: - Data dir: /Users/legal/Documents/vagrant-parallels/.vagrant/machines/centos/parallels
|
191
|
-
DEBUG parallels: Instantiating the driver for machine ID: "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa"
|
192
|
-
INFO base: CLI utility 'prlctl' path: prlctl
|
193
|
-
INFO base: CLI utility 'prlsrvctl' path: prlsrvctl
|
194
|
-
INFO base: CLI utility 'prl_disk_tool' path: prl_disk_tool
|
195
|
-
INFO base: CLI utility 'ifconfig' path: ifconfig
|
196
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "--version"]
|
197
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
198
|
-
DEBUG subprocess: Selecting on IO
|
199
|
-
DEBUG subprocess: stdout: prlctl version 9.0.24172.951362
|
200
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
201
|
-
DEBUG subprocess: Exit status: 0
|
202
|
-
DEBUG meta: Finding driver for Parallels Desktop version: 9.0.24172.951362
|
203
|
-
INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_9
|
204
|
-
INFO base: CLI utility 'prlctl' path: prlctl
|
205
|
-
INFO base: CLI utility 'prlsrvctl' path: prlsrvctl
|
206
|
-
INFO base: CLI utility 'prl_disk_tool' path: prl_disk_tool
|
207
|
-
INFO base: CLI utility 'ifconfig' path: ifconfig
|
208
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa"]
|
209
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
210
|
-
DEBUG subprocess: Selecting on IO
|
211
|
-
DEBUG subprocess: stdout: UUID STATUS IP_ADDR NAME
|
212
|
-
{3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa} stopped - OLOLONAME
|
213
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
|
214
|
-
DEBUG subprocess: Exit status: 0
|
215
|
-
INFO command: With machine: centos (#<VagrantPlugins::Parallels::Provider:0x00000100af7c28 @logger=#<Log4r::Logger:0x00000100af7bb0 @fullname="vagrant::provider::parallels", @outputters=[], @additive=true, @name="parallels", @path="vagrant::provider", @parent=#<Log4r::Logger:0x000001010807a8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000100934828 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000001009347b0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000100926ca0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000101080690 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: centos (VagrantPlugins::Parallels::Provider)>, @driver=#<VagrantPlugins::Parallels::Driver::Meta:0x00000100ae6978 @logger=#<Log4r::Logger:0x00000100b5b598 @fullname="vagrant::provider::parallels::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::parallels", @parent=#<Log4r::Logger:0x00000100af7bb0 @fullname="vagrant::provider::parallels", @outputters=[], @additive=true, @name="parallels", @path="vagrant::provider", @parent=#<Log4r::Logger:0x000001010807a8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000100934828 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000001009347b0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000100926ca0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000101080690 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @cli_paths={:prlctl=>"prlctl", :prlsrvctl=>"prlsrvctl", :prl_disk_tool=>"prl_disk_tool", :ifconfig=>"ifconfig"}, @uuid="3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", @version="9.0.24172.951362", @driver=#<VagrantPlugins::Parallels::Driver::PD_9:0x00000100bcac68 @logger=#<Log4r::Logger:0x000001010a00a8 @fullname="vagrant::provider::parallels::pd_9", @outputters=[], @additive=true, @name="pd_9", @path="vagrant::provider::parallels", @parent=#<Log4r::Logger:0x00000100af7bb0 @fullname="vagrant::provider::parallels", @outputters=[], @additive=true, @name="parallels", @path="vagrant::provider", @parent=#<Log4r::Logger:0x000001010807a8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000100934828 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000001009347b0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000100926ca0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000101080690 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @cli_paths={:prlctl=>"prlctl", :prlsrvctl=>"prlsrvctl", :prl_disk_tool=>"prl_disk_tool", :ifconfig=>"ifconfig"}, @uuid="3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa">>>)
|
216
|
-
DEBUG command: Packaging VM: centos
|
217
|
-
INFO machine: Calling action: package on provider Parallels (3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa)
|
218
|
-
INFO runner: Preparing hooks for middleware sequence...
|
219
|
-
INFO runner: 1 hooks defined.
|
220
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x0000010099ef20>
|
221
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::CheckParallels:0x000001014be9a0>
|
222
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "--version"]
|
223
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
224
|
-
DEBUG subprocess: Selecting on IO
|
225
|
-
DEBUG subprocess: stdout: prlctl version 9.0.24172.951362
|
226
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
227
|
-
DEBUG subprocess: Exit status: 0
|
228
|
-
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000001014be8d8>
|
229
|
-
INFO runner: Preparing hooks for middleware sequence...
|
230
|
-
INFO runner: 1 hooks defined.
|
231
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001017614c8>
|
232
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Created:0x00000101772638>
|
233
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
234
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
235
|
-
DEBUG subprocess: Selecting on IO
|
236
|
-
DEBUG subprocess: stdout: [
|
237
|
-
{
|
238
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
239
|
-
"status": "stopped",
|
240
|
-
"ip_configured": "-",
|
241
|
-
"name": "OLOLONAME"
|
242
|
-
}
|
243
|
-
]
|
244
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
245
|
-
DEBUG subprocess: Exit status: 0
|
246
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::Created:0x00000101772638>
|
247
|
-
INFO runner: Preparing hooks for middleware sequence...
|
248
|
-
INFO runner: 1 hooks defined.
|
249
|
-
INFO runner: Running action: #<Vagrant::Action::Warden:0x000001049e88b0>
|
250
|
-
INFO warden: Calling IN action: #<Proc:0x00000104a8de00@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
251
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::SetupPackageFiles:0x000001049e8810>
|
252
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::CheckAccessible:0x000001049e85e0>
|
253
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
254
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
255
|
-
DEBUG subprocess: Selecting on IO
|
256
|
-
DEBUG subprocess: stdout: [
|
257
|
-
{
|
258
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
259
|
-
"status": "stopped",
|
260
|
-
"ip_configured": "-",
|
261
|
-
"name": "OLOLONAME"
|
262
|
-
}
|
263
|
-
]
|
264
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
265
|
-
DEBUG subprocess: Exit status: 0
|
266
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::CheckParallels:0x000001049e8590>
|
267
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "--version"]
|
268
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
269
|
-
DEBUG subprocess: Selecting on IO
|
270
|
-
DEBUG subprocess: stdout: prlctl version 9.0.24172.951362
|
271
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
272
|
-
DEBUG subprocess: Exit status: 0
|
273
|
-
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000001049e8518>
|
274
|
-
INFO runner: Preparing hooks for middleware sequence...
|
275
|
-
INFO runner: 1 hooks defined.
|
276
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000102822618>
|
277
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Created:0x0000010182f030>
|
278
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
279
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
280
|
-
DEBUG subprocess: Selecting on IO
|
281
|
-
DEBUG subprocess: stdout: [
|
282
|
-
{
|
283
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
284
|
-
"status": "stopped",
|
285
|
-
"ip_configured": "-",
|
286
|
-
"name": "OLOLONAME"
|
287
|
-
}
|
288
|
-
]
|
289
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
290
|
-
DEBUG subprocess: Exit status: 0
|
291
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::Created:0x0000010182f030>
|
292
|
-
INFO runner: Preparing hooks for middleware sequence...
|
293
|
-
INFO runner: 1 hooks defined.
|
294
|
-
INFO runner: Running action: #<Vagrant::Action::Warden:0x00000101289b30>
|
295
|
-
INFO warden: Calling IN action: #<Proc:0x000001009c4a40@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
296
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::CheckAccessible:0x00000101289a90>
|
297
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
298
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
299
|
-
DEBUG subprocess: Selecting on IO
|
300
|
-
DEBUG subprocess: stdout: [
|
301
|
-
{
|
302
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
303
|
-
"status": "stopped",
|
304
|
-
"ip_configured": "-",
|
305
|
-
"name": "OLOLONAME"
|
306
|
-
}
|
307
|
-
]
|
308
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
309
|
-
DEBUG subprocess: Exit status: 0
|
310
|
-
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000101289a40>
|
311
|
-
INFO runner: Preparing hooks for middleware sequence...
|
312
|
-
INFO runner: 1 hooks defined.
|
313
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000101762530>
|
314
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::IsSuspended:0x000001017680e8>
|
315
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
316
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
317
|
-
DEBUG subprocess: Selecting on IO
|
318
|
-
DEBUG subprocess: stdout: [
|
319
|
-
{
|
320
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
321
|
-
"status": "stopped",
|
322
|
-
"ip_configured": "-",
|
323
|
-
"name": "OLOLONAME"
|
324
|
-
}
|
325
|
-
]
|
326
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
327
|
-
DEBUG subprocess: Exit status: 0
|
328
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::IsSuspended:0x000001017680e8>
|
329
|
-
INFO runner: Preparing hooks for middleware sequence...
|
330
|
-
INFO runner: 1 hooks defined.
|
331
|
-
INFO runner: Running action: #<Vagrant::Action::Warden:0x0000010488bcb0>
|
332
|
-
INFO warden: Calling IN action: #<Proc:0x000001048f9e90@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
333
|
-
INFO warden: Calling OUT action: #<Proc:0x000001048f9e90@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
334
|
-
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000001012899f0>
|
335
|
-
INFO runner: Preparing hooks for middleware sequence...
|
336
|
-
INFO runner: 1 hooks defined.
|
337
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000100af65a8>
|
338
|
-
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::GracefulHalt:0x00000100af4f78>
|
339
|
-
INFO graceful_halt: Verifying source state of machine: :running
|
340
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
341
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
342
|
-
DEBUG subprocess: Selecting on IO
|
343
|
-
DEBUG subprocess: stdout: [
|
344
|
-
{
|
345
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
346
|
-
"status": "stopped",
|
347
|
-
"ip_configured": "-",
|
348
|
-
"name": "OLOLONAME"
|
349
|
-
}
|
350
|
-
]
|
351
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
352
|
-
DEBUG subprocess: Exit status: 0
|
353
|
-
INFO graceful_halt: Invalid source state, not halting: stopped
|
354
|
-
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::GracefulHalt:0x00000100af4f78>
|
355
|
-
INFO runner: Preparing hooks for middleware sequence...
|
356
|
-
INFO runner: 1 hooks defined.
|
357
|
-
INFO runner: Running action: #<Vagrant::Action::Warden:0x00000104a87a50>
|
358
|
-
INFO warden: Calling IN action: #<Proc:0x00000100b79778@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
359
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::ForcedHalt:0x00000104a879d8>
|
360
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
361
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
362
|
-
DEBUG subprocess: Selecting on IO
|
363
|
-
DEBUG subprocess: stdout: [
|
364
|
-
{
|
365
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
366
|
-
"status": "stopped",
|
367
|
-
"ip_configured": "-",
|
368
|
-
"name": "OLOLONAME"
|
369
|
-
}
|
370
|
-
]
|
371
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
372
|
-
DEBUG subprocess: Exit status: 0
|
373
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::ForcedHalt:0x00000104a879d8>
|
374
|
-
INFO warden: Calling OUT action: #<Proc:0x00000100b79778@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
375
|
-
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x000001012899f0>
|
376
|
-
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000101289a40>
|
377
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::CheckAccessible:0x00000101289a90>
|
378
|
-
INFO warden: Calling OUT action: #<Proc:0x000001009c4a40@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
379
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::PrepareNFSValidIds:0x000001049e83d8>
|
380
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json"]
|
381
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
382
|
-
DEBUG subprocess: Selecting on IO
|
383
|
-
DEBUG subprocess: stdout: [
|
384
|
-
{
|
385
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
386
|
-
"status": "stopped",
|
387
|
-
"ip_configured": "-",
|
388
|
-
"name": "OLOLONAME"
|
389
|
-
},
|
390
|
-
{
|
391
|
-
"uuid": "8f47915e-8956-4c2d-81f3-8747f9e30d2c",
|
392
|
-
"status": "stopped",
|
393
|
-
"ip_configured": "-",
|
394
|
-
"name": "Windows 8.1"
|
395
|
-
},
|
396
|
-
{
|
397
|
-
"uuid": "c98c47a3-d4ca-46a7-b44e-2eaa7cc2a38b",
|
398
|
-
"status": "stopped",
|
399
|
-
"ip_configured": "-",
|
400
|
-
"name": "graylog2-vagrant-VBOX_default_1393495580886_90156"
|
401
|
-
},
|
402
|
-
{
|
403
|
-
"uuid": "df3ef631-daf2-4479-ba8d-ac03545b49f2",
|
404
|
-
"status": "stopped",
|
405
|
-
"ip_configured": "-",
|
406
|
-
"name": "os_x_10.9_subscriber"
|
407
|
-
}
|
408
|
-
]
|
409
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
410
|
-
DEBUG subprocess: Exit status: 0
|
411
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json", "--template"]
|
412
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
413
|
-
DEBUG subprocess: Selecting on IO
|
414
|
-
DEBUG subprocess: stdout: [
|
415
|
-
|
416
|
-
]
|
417
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
418
|
-
DEBUG subprocess: Exit status: 0
|
419
|
-
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x00000104a56068>
|
420
|
-
INFO synced_folder_cleanup: Invoking synced folder cleanup for: parallels
|
421
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--info", "--json"]
|
422
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
423
|
-
DEBUG subprocess: Selecting on IO
|
424
|
-
DEBUG subprocess: stdout: [
|
425
|
-
{
|
426
|
-
"ID": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
427
|
-
"Name": "OLOLONAME",
|
428
|
-
"Description": "",
|
429
|
-
"Type": "VM",
|
430
|
-
"State": "stopped",
|
431
|
-
"OS": "redhat",
|
432
|
-
"Uptime": "866",
|
433
|
-
"Home": "/Users/legal/Documents/Parallels/OLOLONAME.pvm/",
|
434
|
-
"GuestTools": {
|
435
|
-
"state": "possibly_installed",
|
436
|
-
"version": "9.0.24215"
|
437
|
-
},
|
438
|
-
"Autostart": "off",
|
439
|
-
"Autostop": "suspend",
|
440
|
-
"Startup view": "same",
|
441
|
-
"On gui shutdown": "window",
|
442
|
-
"On window close": "ask",
|
443
|
-
"Undo disks": "off",
|
444
|
-
"Boot order": "hdd0 cdrom0 net0 net1 net2 ",
|
445
|
-
"EFI boot": "off",
|
446
|
-
"Allow select boot device": "off",
|
447
|
-
"External boot device": "",
|
448
|
-
"Remote display": {
|
449
|
-
"mode": "off",
|
450
|
-
"address": "0.0.0.0"
|
451
|
-
},
|
452
|
-
"Remote display state": "stopped",
|
453
|
-
"Hardware": {
|
454
|
-
"cpu": {
|
455
|
-
"cpus": 1,
|
456
|
-
"VT-x": true,
|
457
|
-
"hotplug": false,
|
458
|
-
"accl": "high",
|
459
|
-
"mode": "32"
|
460
|
-
},
|
461
|
-
"memory": {
|
462
|
-
"size": "512Mb",
|
463
|
-
"hotplug": false
|
464
|
-
},
|
465
|
-
"video": {
|
466
|
-
"size": "32Mb",
|
467
|
-
"3d acceleration": "highest",
|
468
|
-
"vertical sync": true,
|
469
|
-
"high resolution": false
|
470
|
-
},
|
471
|
-
"memory_quota": {
|
472
|
-
"auto": true
|
473
|
-
},
|
474
|
-
"hdd0": {
|
475
|
-
"enabled": true,
|
476
|
-
"port": "sata:0",
|
477
|
-
"image": "/Users/legal/Documents/Parallels/OLOLONAME.pvm/harddisk.hdd",
|
478
|
-
"type": "expanded",
|
479
|
-
"size": "65536Mb"
|
480
|
-
},
|
481
|
-
"cdrom0": {
|
482
|
-
"enabled": true,
|
483
|
-
"port": "sata:1",
|
484
|
-
"image": "/Users/legal/Downloads/prl-tools-lin-9.0.24172.951362.iso"
|
485
|
-
},
|
486
|
-
"usb": {
|
487
|
-
"enabled": true
|
488
|
-
},
|
489
|
-
"net0": {
|
490
|
-
"enabled": true,
|
491
|
-
"type": "shared",
|
492
|
-
"mac": "001C421820C7",
|
493
|
-
"card": "virtio"
|
494
|
-
},
|
495
|
-
"net1": {
|
496
|
-
"enabled": true,
|
497
|
-
"type": "bridged",
|
498
|
-
"iface": "vnic2",
|
499
|
-
"mac": "001C42E967C0",
|
500
|
-
"card": "virtio"
|
501
|
-
},
|
502
|
-
"net2": {
|
503
|
-
"enabled": true,
|
504
|
-
"type": "bridged",
|
505
|
-
"iface": "Wi-Fi",
|
506
|
-
"mac": "001C42302655",
|
507
|
-
"card": "virtio"
|
508
|
-
}
|
509
|
-
},
|
510
|
-
"Host Shared Folders": {
|
511
|
-
"enabled": true
|
512
|
-
},
|
513
|
-
"SmartMount": {
|
514
|
-
"enabled": true,
|
515
|
-
"removable drives": {
|
516
|
-
"enabled": true
|
517
|
-
},
|
518
|
-
"CD/DVD drives": {
|
519
|
-
"enabled": true
|
520
|
-
},
|
521
|
-
"network shares": {
|
522
|
-
"enabled": true
|
523
|
-
}
|
524
|
-
},
|
525
|
-
"Encrypted": "no",
|
526
|
-
"Edit restricted": "no",
|
527
|
-
"Protected": "no",
|
528
|
-
"Smart mouse optimized for games": "auto",
|
529
|
-
"Sticky mouse": "off",
|
530
|
-
"Keyboard optimized for games": "off",
|
531
|
-
"Automatic sharing cameras": "off",
|
532
|
-
"Automatic sharing bluetooth": "off",
|
533
|
-
"Support USB 3.0": "on",
|
534
|
-
"Faster virtual machine": "on",
|
535
|
-
"Adaptive hypervisor": "off",
|
536
|
-
"Disabled Windows logo": "on",
|
537
|
-
"Auto compress virtual disks": "on",
|
538
|
-
"Nested virtualization": "off",
|
539
|
-
"PMU virtualization": "off",
|
540
|
-
"Longer battery life": "off",
|
541
|
-
"Show battery status": "on",
|
542
|
-
"Show Windows systray in Mac menu": "on",
|
543
|
-
"Auto-switch to full screen": "on",
|
544
|
-
"Disable aero": "off",
|
545
|
-
"Hide minimized windows": "off",
|
546
|
-
"Lock VM on suspend": "off",
|
547
|
-
"Isolate VM from host": "off",
|
548
|
-
"Smart guard": "off",
|
549
|
-
"Smart guard: notify before creation snapshot": "on",
|
550
|
-
"Smart guard: interval of period creating snapshots": 86400,
|
551
|
-
"Smart guard: maximum count of creating snapshots": 10
|
552
|
-
}
|
553
|
-
]
|
554
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
555
|
-
DEBUG subprocess: Exit status: 0
|
556
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Package:0x00000104a867e0>
|
557
|
-
INFO interface: info: Compressing package to: /Users/legal/Documents/vagrant-parallels/package.box
|
558
|
-
INFO subprocess: Starting process: ["/Applications/Vagrant/bin/../embedded/bin/bsdtar", "-czf", "/Users/legal/Documents/vagrant-parallels/package.box"]
|
559
|
-
INFO subprocess: Command in the installer. Specifying DYLD_LIBRARY_PATH...
|
560
|
-
DEBUG subprocess: Selecting on IO
|
561
|
-
DEBUG subprocess: stderr: bsdtar: no files or directories specified
|
562
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
563
|
-
DEBUG subprocess: Exit status: 1
|
564
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Export:0x00000104a866c8>
|
565
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--json"]
|
566
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
567
|
-
DEBUG subprocess: Selecting on IO
|
568
|
-
DEBUG subprocess: stdout: [
|
569
|
-
{
|
570
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
571
|
-
"status": "stopped",
|
572
|
-
"ip_configured": "-",
|
573
|
-
"name": "OLOLONAME"
|
574
|
-
}
|
575
|
-
]
|
576
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
577
|
-
DEBUG subprocess: Exit status: 0
|
578
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json"]
|
579
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
580
|
-
DEBUG subprocess: Selecting on IO
|
581
|
-
DEBUG subprocess: stdout: [
|
582
|
-
{
|
583
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
584
|
-
"status": "stopped",
|
585
|
-
"ip_configured": "-",
|
586
|
-
"name": "OLOLONAME"
|
587
|
-
},
|
588
|
-
{
|
589
|
-
"uuid": "8f47915e-8956-4c2d-81f3-8747f9e30d2c",
|
590
|
-
"status": "stopped",
|
591
|
-
"ip_configured": "-",
|
592
|
-
"name": "Windows 8.1"
|
593
|
-
},
|
594
|
-
{
|
595
|
-
"uuid": "c98c47a3-d4ca-46a7-b44e-2eaa7cc2a38b",
|
596
|
-
"status": "stopped",
|
597
|
-
"ip_configured": "-",
|
598
|
-
"name": "graylog2-vagrant-VBOX_default_1393495580886_90156"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"uuid": "df3ef631-daf2-4479-ba8d-ac03545b49f2",
|
602
|
-
"status": "stopped",
|
603
|
-
"ip_configured": "-",
|
604
|
-
"name": "os_x_10.9_subscriber"
|
605
|
-
}
|
606
|
-
]
|
607
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
608
|
-
DEBUG subprocess: Exit status: 0
|
609
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json", "--template"]
|
610
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
611
|
-
DEBUG subprocess: Selecting on IO
|
612
|
-
DEBUG subprocess: stdout: [
|
613
|
-
|
614
|
-
]
|
615
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
616
|
-
DEBUG subprocess: Exit status: 0
|
617
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json"]
|
618
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
619
|
-
DEBUG subprocess: Selecting on IO
|
620
|
-
DEBUG subprocess: stdout: [
|
621
|
-
{
|
622
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
623
|
-
"status": "stopped",
|
624
|
-
"ip_configured": "-",
|
625
|
-
"name": "OLOLONAME"
|
626
|
-
},
|
627
|
-
{
|
628
|
-
"uuid": "8f47915e-8956-4c2d-81f3-8747f9e30d2c",
|
629
|
-
"status": "stopped",
|
630
|
-
"ip_configured": "-",
|
631
|
-
"name": "Windows 8.1"
|
632
|
-
},
|
633
|
-
{
|
634
|
-
"uuid": "c98c47a3-d4ca-46a7-b44e-2eaa7cc2a38b",
|
635
|
-
"status": "stopped",
|
636
|
-
"ip_configured": "-",
|
637
|
-
"name": "graylog2-vagrant-VBOX_default_1393495580886_90156"
|
638
|
-
},
|
639
|
-
{
|
640
|
-
"uuid": "df3ef631-daf2-4479-ba8d-ac03545b49f2",
|
641
|
-
"status": "stopped",
|
642
|
-
"ip_configured": "-",
|
643
|
-
"name": "os_x_10.9_subscriber"
|
644
|
-
}
|
645
|
-
]
|
646
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
|
647
|
-
DEBUG subprocess: Exit status: 0
|
648
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json", "--template"]
|
649
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
650
|
-
DEBUG subprocess: Selecting on IO
|
651
|
-
DEBUG subprocess: stdout: [
|
652
|
-
|
653
|
-
]
|
654
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
655
|
-
DEBUG subprocess: Exit status: 0
|
656
|
-
INFO interface: info: Exporting VM...
|
657
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "clone", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--name", "OLOLONAME_box", "--template", "--dst", "/Users/legal/.vagrant.d/tmp/1393764867"]
|
658
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
659
|
-
DEBUG subprocess: Selecting on IO
|
660
|
-
DEBUG subprocess: stdout: Clone the OLOLONAME VM to template OLOLONAME_box...
|
661
|
-
DEBUG subprocess: stdout:
|
662
|
-
INFO interface: info:
|
663
|
-
INFO interface: info: Progress: 28%
|
664
|
-
DEBUG subprocess: stdout:
|
665
|
-
INFO interface: info:
|
666
|
-
INFO interface: info: Progress: 54%
|
667
|
-
DEBUG subprocess: stdout:
|
668
|
-
INFO interface: info:
|
669
|
-
INFO interface: info: Progress: 83%
|
670
|
-
DEBUG subprocess: stdout:
|
671
|
-
INFO interface: info:
|
672
|
-
INFO interface: info: Progress: 100%
|
673
|
-
DEBUG subprocess: stdout:
|
674
|
-
The VM has been successfully cloned.
|
675
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31996
|
676
|
-
DEBUG subprocess: Exit status: 0
|
677
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json"]
|
678
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
679
|
-
DEBUG subprocess: Selecting on IO
|
680
|
-
DEBUG subprocess: stdout: [
|
681
|
-
{
|
682
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
683
|
-
"status": "stopped",
|
684
|
-
"ip_configured": "-",
|
685
|
-
"name": "OLOLONAME"
|
686
|
-
},
|
687
|
-
{
|
688
|
-
"uuid": "8f47915e-8956-4c2d-81f3-8747f9e30d2c",
|
689
|
-
"status": "stopped",
|
690
|
-
"ip_configured": "-",
|
691
|
-
"name": "Windows 8.1"
|
692
|
-
},
|
693
|
-
{
|
694
|
-
"uuid": "c98c47a3-d4ca-46a7-b44e-2eaa7cc2a38b",
|
695
|
-
"status": "stopped",
|
696
|
-
"ip_configured": "-",
|
697
|
-
"name": "graylog2-vagrant-VBOX_default_1393495580886_90156"
|
698
|
-
},
|
699
|
-
{
|
700
|
-
"uuid": "df3ef631-daf2-4479-ba8d-ac03545b49f2",
|
701
|
-
"status": "stopped",
|
702
|
-
"ip_configured": "-",
|
703
|
-
"name": "os_x_10.9_subscriber"
|
704
|
-
}
|
705
|
-
]
|
706
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
707
|
-
DEBUG subprocess: Exit status: 0
|
708
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json", "--template"]
|
709
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
710
|
-
DEBUG subprocess: Selecting on IO
|
711
|
-
DEBUG subprocess: stdout: [
|
712
|
-
{
|
713
|
-
"uuid": "e7ae68cf-8c6d-43d5-9d31-7d60589cf231",
|
714
|
-
"dist": "redhat",
|
715
|
-
"type": "VM",
|
716
|
-
"name": "OLOLONAME_box"
|
717
|
-
}
|
718
|
-
]
|
719
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
720
|
-
DEBUG subprocess: Exit status: 0
|
721
|
-
INFO interface: info:
|
722
|
-
INFO interface: info: Compacting exported HDDs...
|
723
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa", "--info", "--json"]
|
724
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
725
|
-
DEBUG subprocess: Selecting on IO
|
726
|
-
DEBUG subprocess: stdout: [
|
727
|
-
{
|
728
|
-
"ID": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
729
|
-
"Name": "OLOLONAME",
|
730
|
-
"Description": "",
|
731
|
-
"Type": "VM",
|
732
|
-
"State": "stopped",
|
733
|
-
"OS": "redhat",
|
734
|
-
"Uptime": "866",
|
735
|
-
"Home": "/Users/legal/Documents/Parallels/OLOLONAME.pvm/",
|
736
|
-
"GuestTools": {
|
737
|
-
"state": "possibly_installed",
|
738
|
-
"version": "9.0.24215"
|
739
|
-
},
|
740
|
-
"Autostart": "off",
|
741
|
-
"Autostop": "suspend",
|
742
|
-
"Startup view": "same",
|
743
|
-
"On gui shutdown": "window",
|
744
|
-
"On window close": "ask",
|
745
|
-
"Undo disks": "off",
|
746
|
-
"Boot order": "hdd0 cdrom0 net0 net1 net2 ",
|
747
|
-
"EFI boot": "off",
|
748
|
-
"Allow select boot device": "off",
|
749
|
-
"External boot device": "",
|
750
|
-
"Remote display": {
|
751
|
-
"mode": "off",
|
752
|
-
"address": "0.0.0.0"
|
753
|
-
},
|
754
|
-
"Remote display state": "stopped",
|
755
|
-
"Hardware": {
|
756
|
-
"cpu": {
|
757
|
-
"cpus": 1,
|
758
|
-
"VT-x": true,
|
759
|
-
"hotplug": false,
|
760
|
-
"accl": "high",
|
761
|
-
"mode": "32"
|
762
|
-
},
|
763
|
-
"memory": {
|
764
|
-
"size": "512Mb",
|
765
|
-
"hotplug": false
|
766
|
-
},
|
767
|
-
"video": {
|
768
|
-
"size": "32Mb",
|
769
|
-
"3d acceleration": "highest",
|
770
|
-
"vertical sync": true,
|
771
|
-
"high resolution": false
|
772
|
-
},
|
773
|
-
"memory_quota": {
|
774
|
-
"auto": true
|
775
|
-
},
|
776
|
-
"hdd0": {
|
777
|
-
"enabled": true,
|
778
|
-
"port": "sata:0",
|
779
|
-
"image": "/Users/legal/Documents/Parallels/OLOLONAME.pvm/harddisk.hdd",
|
780
|
-
"type": "expanded",
|
781
|
-
"size": "65536Mb"
|
782
|
-
},
|
783
|
-
"cdrom0": {
|
784
|
-
"enabled": true,
|
785
|
-
"port": "sata:1",
|
786
|
-
"image": "/Users/legal/Downloads/prl-tools-lin-9.0.24172.951362.iso"
|
787
|
-
},
|
788
|
-
"usb": {
|
789
|
-
"enabled": true
|
790
|
-
},
|
791
|
-
"net0": {
|
792
|
-
"enabled": true,
|
793
|
-
"type": "shared",
|
794
|
-
"mac": "001C421820C7",
|
795
|
-
"card": "virtio"
|
796
|
-
},
|
797
|
-
"net1": {
|
798
|
-
"enabled": true,
|
799
|
-
"type": "bridged",
|
800
|
-
"iface": "vnic2",
|
801
|
-
"mac": "001C42E967C0",
|
802
|
-
"card": "virtio"
|
803
|
-
},
|
804
|
-
"net2": {
|
805
|
-
"enabled": true,
|
806
|
-
"type": "bridged",
|
807
|
-
"iface": "Wi-Fi",
|
808
|
-
"mac": "001C42302655",
|
809
|
-
"card": "virtio"
|
810
|
-
}
|
811
|
-
},
|
812
|
-
"Host Shared Folders": {
|
813
|
-
"enabled": true
|
814
|
-
},
|
815
|
-
"SmartMount": {
|
816
|
-
"enabled": true,
|
817
|
-
"removable drives": {
|
818
|
-
"enabled": true
|
819
|
-
},
|
820
|
-
"CD/DVD drives": {
|
821
|
-
"enabled": true
|
822
|
-
},
|
823
|
-
"network shares": {
|
824
|
-
"enabled": true
|
825
|
-
}
|
826
|
-
},
|
827
|
-
"Encrypted": "no",
|
828
|
-
"Edit restricted": "no",
|
829
|
-
"Protected": "no",
|
830
|
-
"Smart mouse optimized for games": "auto",
|
831
|
-
"Sticky mouse": "off",
|
832
|
-
"Keyboard optimized for games": "off",
|
833
|
-
"Automatic sharing cameras": "off",
|
834
|
-
"Automatic sharing bluetooth": "off",
|
835
|
-
"Support USB 3.0": "on",
|
836
|
-
"Faster virtual machine": "on",
|
837
|
-
"Adaptive hypervisor": "off",
|
838
|
-
"Disabled Windows logo": "on",
|
839
|
-
"Auto compress virtual disks": "on",
|
840
|
-
"Nested virtualization": "off",
|
841
|
-
"PMU virtualization": "off",
|
842
|
-
"Longer battery life": "off",
|
843
|
-
"Show battery status": "on",
|
844
|
-
"Show Windows systray in Mac menu": "on",
|
845
|
-
"Auto-switch to full screen": "on",
|
846
|
-
"Disable aero": "off",
|
847
|
-
"Hide minimized windows": "off",
|
848
|
-
"Lock VM on suspend": "off",
|
849
|
-
"Isolate VM from host": "off",
|
850
|
-
"Smart guard": "off",
|
851
|
-
"Smart guard: notify before creation snapshot": "on",
|
852
|
-
"Smart guard: interval of period creating snapshots": 86400,
|
853
|
-
"Smart guard: maximum count of creating snapshots": 10
|
854
|
-
}
|
855
|
-
]
|
856
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
857
|
-
DEBUG subprocess: Exit status: 0
|
858
|
-
INFO subprocess: Starting process: ["/usr/bin/prl_disk_tool", "compact", "--hdd", "/Users/legal/Documents/Parallels/OLOLONAME.pvm/harddisk.hdd"]
|
859
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
860
|
-
DEBUG subprocess: Selecting on IO
|
861
|
-
DEBUG subprocess: stdout:
|
862
|
-
INFO interface: info:
|
863
|
-
INFO interface: info: Progress: 5%
|
864
|
-
DEBUG subprocess: stdout:
|
865
|
-
INFO interface: info:
|
866
|
-
INFO interface: info: Progress: 30%
|
867
|
-
DEBUG subprocess: stdout:
|
868
|
-
INFO interface: info:
|
869
|
-
INFO interface: info: Progress: 100%
|
870
|
-
DEBUG subprocess: stdout:
|
871
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
|
872
|
-
DEBUG subprocess: Exit status: 0
|
873
|
-
INFO interface: info:
|
874
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json"]
|
875
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
876
|
-
DEBUG subprocess: Selecting on IO
|
877
|
-
DEBUG subprocess: stdout: [
|
878
|
-
{
|
879
|
-
"uuid": "3174a67f-b6c8-47d7-8aaa-c9723f0ccbfa",
|
880
|
-
"status": "stopped",
|
881
|
-
"ip_configured": "-",
|
882
|
-
"name": "OLOLONAME"
|
883
|
-
},
|
884
|
-
{
|
885
|
-
"uuid": "8f47915e-8956-4c2d-81f3-8747f9e30d2c",
|
886
|
-
"status": "stopped",
|
887
|
-
"ip_configured": "-",
|
888
|
-
"name": "Windows 8.1"
|
889
|
-
},
|
890
|
-
{
|
891
|
-
"uuid": "c98c47a3-d4ca-46a7-b44e-2eaa7cc2a38b",
|
892
|
-
"status": "stopped",
|
893
|
-
"ip_configured": "-",
|
894
|
-
"name": "graylog2-vagrant-VBOX_default_1393495580886_90156"
|
895
|
-
},
|
896
|
-
{
|
897
|
-
"uuid": "df3ef631-daf2-4479-ba8d-ac03545b49f2",
|
898
|
-
"status": "stopped",
|
899
|
-
"ip_configured": "-",
|
900
|
-
"name": "os_x_10.9_subscriber"
|
901
|
-
}
|
902
|
-
]
|
903
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
904
|
-
DEBUG subprocess: Exit status: 0
|
905
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "list", "--all", "--json", "--template"]
|
906
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
907
|
-
DEBUG subprocess: Selecting on IO
|
908
|
-
DEBUG subprocess: stdout: [
|
909
|
-
{
|
910
|
-
"uuid": "e7ae68cf-8c6d-43d5-9d31-7d60589cf231",
|
911
|
-
"dist": "redhat",
|
912
|
-
"type": "VM",
|
913
|
-
"name": "OLOLONAME_box"
|
914
|
-
}
|
915
|
-
]
|
916
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
917
|
-
DEBUG subprocess: Exit status: 0
|
918
|
-
INFO export: Unregister the box template: 'e7ae68cf-8c6d-43d5-9d31-7d60589cf231'
|
919
|
-
INFO subprocess: Starting process: ["/usr/bin/prlctl", "unregister", "e7ae68cf-8c6d-43d5-9d31-7d60589cf231"]
|
920
|
-
DEBUG subprocess: Command not in installer, not touching env vars.
|
921
|
-
DEBUG subprocess: Selecting on IO
|
922
|
-
DEBUG subprocess: stdout: The VM has been successfully unregistered.
|
923
|
-
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
|
924
|
-
DEBUG subprocess: Exit status: 0
|
925
|
-
INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::PackageConfigFiles:0x00000100b7b0a0>
|
926
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::PackageConfigFiles:0x00000100b7b0a0>
|
927
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::Export:0x00000104a866c8>
|
928
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::Package:0x00000104a867e0>
|
929
|
-
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x00000104a56068>
|
930
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::PrepareNFSValidIds:0x000001049e83d8>
|
931
|
-
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x000001049e8518>
|
932
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::CheckParallels:0x000001049e8590>
|
933
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::CheckAccessible:0x000001049e85e0>
|
934
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::SetupPackageFiles:0x000001049e8810>
|
935
|
-
INFO warden: Calling OUT action: #<Proc:0x00000104a8de00@/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:94 (lambda)>
|
936
|
-
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x000001014be8d8>
|
937
|
-
INFO warden: Calling OUT action: #<VagrantPlugins::Parallels::Action::CheckParallels:0x000001014be9a0>
|
938
|
-
INFO environment: Running hook: environment_unload
|
939
|
-
INFO runner: Preparing hooks for middleware sequence...
|
940
|
-
INFO runner: 1 hooks defined.
|
941
|
-
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000104a978d8>
|