vagrant-parallels 0.2.1 → 0.2.2.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +21 -13
  3. data/.travis.yml +1 -0
  4. data/README.md +43 -54
  5. data/config/i18n-tasks.yml.erb +1 -1
  6. data/debug.log +941 -0
  7. data/lib/vagrant-parallels/action.rb +0 -7
  8. data/lib/vagrant-parallels/action/check_accessible.rb +1 -1
  9. data/lib/vagrant-parallels/action/check_guest_tools.rb +10 -2
  10. data/lib/vagrant-parallels/action/clear_network_interfaces.rb +1 -1
  11. data/lib/vagrant-parallels/action/customize.rb +6 -4
  12. data/lib/vagrant-parallels/action/export.rb +56 -12
  13. data/lib/vagrant-parallels/action/import.rb +49 -30
  14. data/lib/vagrant-parallels/action/network.rb +137 -48
  15. data/lib/vagrant-parallels/action/package_config_files.rb +0 -12
  16. data/lib/vagrant-parallels/action/prepare_nfs_valid_ids.rb +1 -1
  17. data/lib/vagrant-parallels/action/set_name.rb +2 -2
  18. data/lib/vagrant-parallels/config.rb +11 -2
  19. data/lib/vagrant-parallels/driver/base.rb +281 -0
  20. data/lib/vagrant-parallels/driver/meta.rb +138 -0
  21. data/lib/vagrant-parallels/driver/{prl_ctl.rb → pd_8.rb} +116 -256
  22. data/lib/vagrant-parallels/driver/pd_9.rb +417 -0
  23. data/lib/vagrant-parallels/errors.rb +15 -7
  24. data/lib/vagrant-parallels/plugin.rb +7 -7
  25. data/lib/vagrant-parallels/provider.rb +33 -3
  26. data/lib/vagrant-parallels/version.rb +1 -1
  27. data/locales/en.yml +30 -16
  28. data/test/unit/base.rb +1 -5
  29. data/test/unit/config_test.rb +13 -2
  30. data/test/unit/driver/pd_8_test.rb +196 -0
  31. data/test/unit/driver/pd_9_test.rb +196 -0
  32. data/test/unit/locales/locales_test.rb +1 -1
  33. data/test/unit/support/shared/parallels_context.rb +2 -2
  34. data/test/unit/support/shared/pd_driver_examples.rb +243 -0
  35. data/test/unit/synced_folder_test.rb +37 -0
  36. data/vagrant-parallels.gemspec +5 -5
  37. metadata +39 -32
  38. data/lib/vagrant-parallels/action/match_mac_address.rb +0 -28
  39. data/lib/vagrant-parallels/action/register_template.rb +0 -24
  40. data/lib/vagrant-parallels/action/unregister_template.rb +0 -26
  41. data/test/support/isolated_environment.rb +0 -46
  42. data/test/support/tempdir.rb +0 -43
  43. data/test/unit/driver/prl_ctl_test.rb +0 -148
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4daff90969e22a8bcb04c781f58bac65a49aee0e
4
- data.tar.gz: 40e3c147c12794c1fbbbde625ff0f98b17651e8f
3
+ metadata.gz: 7dc8645c874f88dad88e5cef3d9303ed1a5a1198
4
+ data.tar.gz: 8849d44c11e2497a6e9dd94e24575935cc737ce3
5
5
  SHA512:
6
- metadata.gz: d9c65806dcf82814e93cc394ccbbcf2ee8248584ff9dd46604b8b8fc1df0226d74371892b7a7348c60cdc51bc3b19624830be0bffff5faa22cd1be7cb2acbe93
7
- data.tar.gz: 40ff69f74c702c2089c74f15b027878cf7b46bdee6b6fe76db0099ffe2418c4763b92bb263f4d938cdad780c20ef08ad2a48c5b61feb3928594a6f8a4fec8a70
6
+ metadata.gz: e26dc00d7c793352c15a5273d6a24d0e3c0d5b612a1d6ca6ae07fceeb9ba313558b38e510c0075e59eb6c766fa0159ea89e23673c07ae4068418b81d0557edeb
7
+ data.tar.gz: 6bc694be3862ba1985b775ab7ab3c349f031efdbeb226455794618b61340055843b415b76a360acb60bc68932a2e7bbf14ec96ee948111bbc15bcd78528b1dc4
data/.gitignore CHANGED
@@ -1,25 +1,33 @@
1
1
  # OS-specific
2
2
  .DS_Store
3
3
 
4
- #rbenv
5
- .ruby-version
4
+ # Vagrant stuff
5
+ acceptance_config.yml
6
+ boxes/*
7
+ /Vagrantfile
8
+ /.vagrant
9
+ /vagrant-spec.config.rb
6
10
 
7
11
  # Bundler/Rubygems
8
12
  *.gem
9
13
  .bundle
10
14
  pkg/*
11
15
  tags
12
- Gemfile.lock
16
+ /Gemfile.lock
13
17
  test/tmp/
14
18
 
15
- # Vagrant
16
-
17
- # Vagrant stuff
18
- acceptance_config.yml
19
- boxes/*
20
- Vagrantfile
21
- .vagrant
22
- vagrant-spec.config.rb
23
- *.box
19
+ # Python
24
20
  *.pyc
25
- sandi_meter
21
+
22
+ # Rubinius
23
+ *.rbc
24
+
25
+ # IDE junk
26
+ .idea/*
27
+ *.iml
28
+
29
+ # Ruby Managers
30
+ .rbenv
31
+ .ruby-gemset
32
+ .ruby-version
33
+ .rvmrc
data/.travis.yml CHANGED
@@ -2,6 +2,7 @@ language: ruby
2
2
  before_install:
3
3
  - sudo apt-get update -qq
4
4
  - sudo apt-get install -qq -y bsdtar
5
+ - gem install bundler -v '1.5.2'
5
6
  rvm:
6
7
  - 2.0.0
7
8
  script: rake test:unit
data/README.md CHANGED
@@ -53,76 +53,63 @@ source ~/.zshrc
53
53
  ## Box Format
54
54
 
55
55
  Every provider in Vagrant must introduce a custom box format. This
56
- provider introduces `parallels` boxes. You can download one using this [link](https://s3-eu-west-1.amazonaws.com/vagrant-parallels/devbox.box).
57
- That directory also contains instructions on how to build a box.
56
+ provider introduces `parallels` boxes. You can download one using this [link](http://download.parallels.com/desktop/vagrant/precise64.box).
58
57
 
59
58
  Download the box file, then use vagrant to add the downloaded box using this command. Remember to use `bundle exec` before `vagrant` command if you are in development mode
60
59
 
61
60
  ```
62
- $ wget https://s3-eu-west-1.amazonaws.com/vagrant-parallels/devbox-201312.box
63
- $ vagrant box add devbox devbox.box --provider=parallels
61
+ $ vagrant box add --provider=parallels precise64 http://download.parallels.com/desktop/vagrant/precise64.box
64
62
  ```
65
- ***updated box file to fix mac address regeneration issue #42, devbox is Ubuntu 12.04.3 LTS (GNU/Linux 3.2.0-57-generic x86_64***
66
63
 
67
64
  The box format is basically just the required `metadata.json` file
68
65
  along with a `Vagrantfile` that does default settings for the
69
66
  provider-specific configuration for this provider.
70
67
 
71
68
  ## Networking
72
- By default 'vagrant-parallels' uses the basic Vagrant networking approach. By default VM has one adapter assigned to the 'Shared' network in Parallels Desktop.
73
- But you can also add one ore more `:private_network` adapters, as described below:
74
-
75
- ### Private Network
76
- It is fully compatible with basic Vagrant [Private Networks](http://docs.vagrantup.com/v2/networking/private_network.html).
77
- #### Available arguments:
78
- - `type` - IP configuration way: `:static` or `:dhcp` (exactly Symbol object). Default is `:static`. If `:dchp` is set, such interface will get an IP dynamically from default subnet "10.37.129.1/255.255.255.0".
79
- - `mac` - MAC address which will be assigned to this network adapter. If omitted, MAC will be automatically generated at the first `up` of VM.
80
- - `ip` - IP address which will be assigned to this network adapter. It is required only if type is `:static`.
81
- - `netmask` - network mask. Default is `"255.255.255.0"`. It is required only if type is `:static`.
82
- - `nic_type` - Unnecessary argument, means the type of network adapter. Can be any of `"virtio"`, `"e1000"` or `"rtl"`. Default is `"e1000"`.
83
-
84
- #### Example:
85
- ```ruby
86
- Vagrant.configure("2") do |config|
87
- config.vm.network :private_network, ip: "33.33.33.50", netmask: "255.255.0.0"
88
- config.vm.network :private_network, type: :dhcp, nic_type: "rtl"
89
- end
90
- ```
91
- It means that two private network adapters will be configured:
92
- 1) The first will have static ip '33.33.33.50' and mask '255.255.0.0'. It will be represented as device `"e1000"` by default (e.g. 'Intel(R) PRO/1000 MT').
93
- 2) The second adapter will be configured as `"rtl"` ('Realtek RTL8029AS') and get an IP from internal DHCP server, which is working on the default network "10.37.129.1/255.255.255.0".
94
-
95
- ### Public Network
96
- It is fully compatible with basic Vagrant [Public Networks](http://docs.vagrantup.com/v2/networking/public_network.html).
97
- #### Available arguments (unnecessary, but provider specific):
98
- - `bridge` - target host's interface for bridged network. You can specify full (ex: `Wi-Fi`) or short (ex: `en0`) name of interface. If omitted, you will be asked to choose the interface during the VM boot (or if only one interface exists, it will be chosen automatically).
99
- _Hint:_ Full names of network interfaces are displayed in _System Preferences -> Network_ window, and short names - in the `ifconfig` command output on your Mac.
100
- - `mac` - MAC address which will be assigned to this network adapter. If omitted, MAC will be automatically generated at the first `up` of VM.
101
- - `ip` - IP address which will be assigned to this network adapter. Use it, if you want to configure adapter manually.
102
- - `netmask` - network mask. Default is `"255.255.255.0"`. It is used only in pair with `ip`
103
- - `type` - IP configuration way, only `:dhcp` is available. Use it only if your public network has a valid DHCP server. Otherwise, omit this attribute or use an `ip` and `netmask` described above.
104
- - `nic_type` - type of network adapter. Can be any of `"virtio"`, `"e1000"` or `"rtl"`. Default is `"e1000"`.
105
-
106
- #### Example:
69
+ By default Vagrant Parallels provider uses the basic Vagrant networking
70
+ approach. Initially VM has one adapter assigned to the 'Shared' network
71
+ in Parallels Desktop.
72
+
73
+ But you can also add `:private_network` and `:public_network` adapters.
74
+ These features are working by the same way as in the basic Vagrant:
75
+ - [Private Networks]
76
+ (http://docs.vagrantup.com/v2/networking/private_network.html)
77
+ - [Public Networks]
78
+ (http://docs.vagrantup.com/v2/networking/public_network.html)
79
+
80
+ ## Provider Specific Configuration
81
+
82
+ Parallels Desktop has a `prlctl` utility that can be used to make modifications
83
+ to Parallels virtual machines from the command line.
84
+
85
+
86
+ Parallels provider exposes a way to call any command against *prlctl* just prior
87
+ to booting the machine:
88
+
107
89
  ```ruby
108
- Vagrant.configure("2") do |config|
109
- config.vm.network :public_network, bridge: "Wi-Fi", mac: "001C425FC3AB", type: :dhcp
110
- config.vm.network :public_network, bridge: "en4", ip: "10.3.1.18", netmask: "255.255.252.0"
90
+ config.vm.provider "parallels" do |v|
91
+ v.customize ["set", :id, "--device-set", "cdrom0", "--image",
92
+ "/path/to/disk.iso", "--connect"]
111
93
  end
112
94
  ```
113
- It means that two public network adapters will be configured:
114
- 1) The first will be bridged to the 'Wi-Fi' host machine's interface and will have the specified MAC address. After the VM boot it will be automatically configured to get an IP from the DHCP server, which is accessible in the 'Wi-Fi' network).
115
- 2) The second adapter will be bridged to the interface 'en4' and will have static ip '10.3.1.18' and mask '255.255.252.0'.
116
95
 
117
- ## Provider Specific Configuration
96
+ In the example above, the VM is modified to have a specified iso image attached
97
+ to it's virtual media device (cdrom). Some details:
98
+
99
+ * The `:id` special parameter is replaced with the ID of the virtual
100
+ machine being created, so when a *prlctl* command requires an ID, you
101
+ can pass this special parameter.
118
102
 
119
- Provider allows to define directives for `prlctl set` through `Vagrantfile` in same way as this done in VirtualBox provider.
103
+ * Multiple `customize` directives can be used. They will be executed in the
104
+ order given.
105
+
106
+ There are some convenience shortcuts for memory and CPU settings:
120
107
 
121
- #### Example:
122
108
  ```ruby
123
- config.vm.provider :parallels do |parallels|
124
- parallels.name = "HipHop VM"
125
- parallels.customize ["set", :id, "--memsize", "1024"]
109
+ config.vm.provider "parallels" do |v|
110
+ v.memory = 1024
111
+ v.cpus = 2
112
+ end
126
113
  ```
127
114
 
128
115
  ## Development
@@ -180,10 +167,12 @@ So, now that you have your own plugin installed, check it with the command `vagr
180
167
 
181
168
  A great thanks to the people who helping this project stand on its feet, thank you
182
169
 
183
- * Kevin Kaland `@wizonesolutions`
170
+ * Youssef Shahin `@yshahin` - plugin's author
184
171
  * Mikhail Zholobov `@legal90`
172
+ * Kevin Kaland `@wizonesolutions`
173
+ * Konstantin Nazarov `@racktear`
185
174
  * Dmytro Vasylenko `@odi-um`
186
175
  * Thomas Koschate `@koschate`
187
176
 
188
- and to all the people who are using and testing this tool
177
+ and to all the people who are using and testing this provider
189
178
 
@@ -2,7 +2,7 @@ search:
2
2
  paths:
3
3
  - "lib/"
4
4
  data:
5
- adapter: yaml
5
+ adapter: file_system
6
6
  read:
7
7
  - "locales/%{locale}.yml"
8
8
  - "<%= %x[bundle show vagrant].chomp %>/templates/locales/%{locale}.yml"
data/debug.log ADDED
@@ -0,0 +1,941 @@
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>