vagrant-parallels 1.6.2 → 1.6.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +29 -0
  3. data/LICENSE.txt +1 -1
  4. data/lib/vagrant-parallels/action.rb +7 -0
  5. data/lib/vagrant-parallels/action/box_unregister.rb +3 -0
  6. data/lib/vagrant-parallels/action/check_shared_interface.rb +29 -0
  7. data/lib/vagrant-parallels/action/clear_forwarded_ports.rb +3 -2
  8. data/lib/vagrant-parallels/action/export.rb +69 -6
  9. data/lib/vagrant-parallels/action/forward_ports.rb +1 -1
  10. data/lib/vagrant-parallels/action/network.rb +8 -10
  11. data/lib/vagrant-parallels/action/sane_defaults.rb +2 -1
  12. data/lib/vagrant-parallels/cap.rb +0 -1
  13. data/lib/vagrant-parallels/config.rb +18 -8
  14. data/lib/vagrant-parallels/driver/base.rb +68 -24
  15. data/lib/vagrant-parallels/driver/meta.rb +3 -1
  16. data/lib/vagrant-parallels/driver/pd_10.rb +36 -39
  17. data/lib/vagrant-parallels/driver/pd_11.rb +4 -0
  18. data/lib/vagrant-parallels/driver/pd_8.rb +31 -27
  19. data/lib/vagrant-parallels/errors.rb +10 -2
  20. data/lib/vagrant-parallels/version.rb +1 -1
  21. data/locales/en.yml +25 -9
  22. metadata +4 -29
  23. data/.gitignore +0 -34
  24. data/.travis.yml +0 -10
  25. data/CONTRIBUTING.md +0 -80
  26. data/Gemfile +0 -14
  27. data/Rakefile +0 -21
  28. data/debug.log +0 -1237
  29. data/tasks/acceptance.rake +0 -28
  30. data/tasks/bundler.rake +0 -3
  31. data/tasks/test.rake +0 -8
  32. data/test/acceptance/base.rb +0 -2
  33. data/test/acceptance/provider/linked_clone_spec.rb +0 -30
  34. data/test/acceptance/provider/snapshot_spec.rb +0 -63
  35. data/test/acceptance/shared/context_parallels.rb +0 -2
  36. data/test/acceptance/skeletons/linked_clone/Vagrantfile +0 -7
  37. data/test/unit/base.rb +0 -24
  38. data/test/unit/cap_test.rb +0 -96
  39. data/test/unit/config_test.rb +0 -91
  40. data/test/unit/driver/pd_10_test.rb +0 -31
  41. data/test/unit/driver/pd_8_test.rb +0 -10
  42. data/test/unit/driver/pd_9_test.rb +0 -29
  43. data/test/unit/support/shared/parallels_context.rb +0 -230
  44. data/test/unit/support/shared/pd_driver_examples.rb +0 -339
  45. data/test/unit/synced_folder_test.rb +0 -49
  46. data/vagrant-parallels.gemspec +0 -59
  47. data/vagrant-spec.config.example.rb +0 -10
data/.travis.yml DELETED
@@ -1,10 +0,0 @@
1
- language: ruby
2
-
3
- sudo: false
4
-
5
- cache: bundler
6
-
7
- rvm:
8
- - 2.0.0
9
-
10
- script: bundle exec rake test:unit
data/CONTRIBUTING.md DELETED
@@ -1,80 +0,0 @@
1
- ## How to contribute
2
-
3
- We are glad you want to contribute to the `vagrant-parallels` plugin!
4
- First of all, clone this repository:
5
-
6
- ```
7
- $ git clone https://github.com/Parallels/vagrant-parallels
8
- $ cd vagrant-parallels
9
- ```
10
-
11
- ### Dependencies and Unit Tests
12
-
13
- To hack on our plugin, you'll need a [Ruby interpreter](https://www.ruby-lang.org/en/downloads/)
14
- (>= 2.0) and [Bundler](http://bundler.io/) which can be installed with a simple
15
- `gem install bundler`. Afterwards, do the following:
16
-
17
- ```
18
- $ bundle install
19
- $ rake
20
- ```
21
-
22
- This will run the unit test suite, which should come back all green!
23
- Then you're good to go!
24
-
25
- If you want to run Vagrant without having to install the `vagrant-parallels`
26
- gem, you may use `bundle exec`, like so:
27
-
28
- ```
29
- $ bundle exec vagrant up --provider=parallels
30
- ```
31
-
32
- ### Building Provider from Source
33
- To build a `vagrant-parallels` gem just run this command:
34
-
35
- ```
36
- $ rake build
37
- ```
38
-
39
- The built "gem" package will appear in the `./pkg` folder.
40
-
41
- Then, if you want to install plugin from your locally built "gem", use the
42
- following commands:
43
-
44
- ```
45
- $ vagrant plugin uninstall vagrant-parallels
46
- $ vagrant plugin install pkg/vagrant-parallels-<version>.gem
47
- ```
48
-
49
- Now that you have your own plugin installed, check it with the command
50
- `vagrant plugin list`
51
-
52
- ### Sending a Pull Request
53
- If you're ready to send your changes, please follow the next steps:
54
-
55
- 1. Fork the 'vagrant-parallels' repository and ad it as a new remote (`git add
56
- remote my-fork <fork_url>`)
57
- 2. Create a branch (`git checkout -b my-new-feature`)
58
- 3. Commit your changes (`git commit -am "Added a sweet feature"`)
59
- 4. Push the branch to your fork (`git push fork my-new-feature`)
60
- 5. Create a pull request from your `my-new-feature` branch into `master` of
61
- `vagrant-parallels` repo
62
-
63
- ### Acceptance Tests
64
-
65
- Vagrant also comes with an acceptance test suite that does black-box
66
- tests of various Vagrant components. Note that these tests are **extremely
67
- slow** because actual VMs are spun up and down. The full test suite can
68
- take hours.
69
-
70
- To run the acceptance test suite, first copy `vagrant-spec.config.example.rb`
71
- to `vagrant-spec.config.rb` and modify it to valid values. The places you
72
- should fill in are clearly marked. Highly recommend to download a box and
73
- specify a local path to it.
74
-
75
- Run acceptance tests:
76
-
77
- ```
78
- $ rake acceptance:run
79
- ...
80
- ```
data/Gemfile DELETED
@@ -1,14 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- group :plugins do
4
- # Specify your gem's dependencies in vagrant-parallels.gemspec
5
- gemspec
6
- end
7
-
8
- group :development do
9
- # We depend on Vagrant for development, but we don't add it as a
10
- # gem dependency because we expect to be installed within the
11
- # Vagrant environment itself using `vagrant plugin`.
12
- gem 'vagrant', git: 'git://github.com/mitchellh/vagrant.git', tag: 'v1.8.1'
13
- gem 'vagrant-spec', git: 'git://github.com/mitchellh/vagrant-spec.git'
14
- end
data/Rakefile DELETED
@@ -1,21 +0,0 @@
1
- #!/usr/bin/env rake
2
-
3
- require 'rubygems'
4
- require 'bundler/setup'
5
- require 'rspec/core/rake_task'
6
-
7
- # Immediately sync all stdout so that tools like buildbot can
8
- # immediately load in the output.
9
- $stdout.sync = true
10
- $stderr.sync = true
11
-
12
- # Load all the rake tasks from the "tasks" folder. This folder
13
- # allows us to nicely separate rake tasks into individual files
14
- # based on their role, which makes development and debugging easier
15
- # than one monolithic file.
16
- task_dir = File.expand_path('../tasks', __FILE__)
17
- Dir["#{task_dir}/**/*.rake"].each do |task_file|
18
- load task_file
19
- end
20
-
21
- task :default => 'test:unit'
data/debug.log DELETED
@@ -1,1237 +0,0 @@
1
- INFO global: Vagrant version: 1.8.0.dev
2
- INFO global: Ruby version: 2.1.0
3
- INFO global: RubyGems version: 2.2.0
4
- INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
5
- INFO global: VAGRANT_LOG="debug"
6
- INFO global: Plugins:
7
- INFO global: - rake = 10.4.2
8
- INFO global: - bundler = 1.7.0
9
- INFO global: - diff-lcs = 1.2.5
10
- INFO global: - mini_portile = 0.6.0
11
- INFO global: - nokogiri = 1.6.3.1
12
- INFO global: - rspec-core = 2.14.8
13
- INFO global: - rspec-expectations = 2.14.5
14
- INFO global: - rspec-mocks = 2.14.6
15
- INFO global: - rspec = 2.14.1
16
- INFO global: - vagrant-parallels = 1.5.1
17
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/box/plugin.rb
18
- INFO manager: Registered plugin: box command
19
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/cap/plugin.rb
20
- INFO manager: Registered plugin: cap command
21
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/destroy/plugin.rb
22
- INFO manager: Registered plugin: destroy command
23
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/global-status/plugin.rb
24
- INFO manager: Registered plugin: global-status command
25
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/halt/plugin.rb
26
- INFO manager: Registered plugin: halt command
27
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/help/plugin.rb
28
- INFO manager: Registered plugin: help command
29
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/init/plugin.rb
30
- INFO manager: Registered plugin: init command
31
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/list-commands/plugin.rb
32
- INFO manager: Registered plugin: list-commands command
33
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/login/plugin.rb
34
- INFO manager: Registered plugin: vagrant-login
35
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/package/plugin.rb
36
- INFO manager: Registered plugin: package command
37
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/plugin/plugin.rb
38
- INFO manager: Registered plugin: plugin command
39
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/provision/plugin.rb
40
- INFO manager: Registered plugin: provision command
41
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/push/plugin.rb
42
- INFO manager: Registered plugin: push command
43
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/rdp/plugin.rb
44
- INFO manager: Registered plugin: rdp command
45
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/reload/plugin.rb
46
- INFO manager: Registered plugin: reload command
47
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/resume/plugin.rb
48
- INFO manager: Registered plugin: resume command
49
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/snapshot/plugin.rb
50
- INFO manager: Registered plugin: snapshot command
51
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/ssh/plugin.rb
52
- INFO manager: Registered plugin: ssh command
53
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/ssh_config/plugin.rb
54
- INFO manager: Registered plugin: ssh-config command
55
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/status/plugin.rb
56
- INFO manager: Registered plugin: status command
57
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/suspend/plugin.rb
58
- INFO manager: Registered plugin: suspend command
59
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/up/plugin.rb
60
- INFO manager: Registered plugin: up command
61
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/version/plugin.rb
62
- INFO manager: Registered plugin: version command
63
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/communicators/ssh/plugin.rb
64
- INFO manager: Registered plugin: ssh communicator
65
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/communicators/winrm/plugin.rb
66
- INFO manager: Registered plugin: winrm communicator
67
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/arch/plugin.rb
68
- INFO manager: Registered plugin: Arch guest
69
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/atomic/plugin.rb
70
- INFO manager: Registered plugin: Atomic Host guest
71
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/coreos/plugin.rb
72
- INFO manager: Registered plugin: CoreOS guest
73
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/darwin/plugin.rb
74
- INFO manager: Registered plugin: Darwin guest
75
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/debian/plugin.rb
76
- INFO manager: Registered plugin: Debian guest
77
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/debian8/plugin.rb
78
- INFO manager: Registered plugin: Debian Jessie guest
79
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/esxi/plugin.rb
80
- INFO manager: Registered plugin: ESXi guest.
81
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/fedora/plugin.rb
82
- INFO manager: Registered plugin: Fedora guest
83
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/freebsd/plugin.rb
84
- INFO manager: Registered plugin: FreeBSD guest
85
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/funtoo/plugin.rb
86
- INFO manager: Registered plugin: Funtoo guest
87
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/gentoo/plugin.rb
88
- INFO manager: Registered plugin: Gentoo guest
89
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/linux/plugin.rb
90
- INFO manager: Registered plugin: Linux guest.
91
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/mint/plugin.rb
92
- INFO manager: Registered plugin: Mint guest
93
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/netbsd/plugin.rb
94
- INFO manager: Registered plugin: NetBSD guest
95
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/nixos/plugin.rb
96
- INFO manager: Registered plugin: NixOS guest
97
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/omnios/plugin.rb
98
- INFO manager: Registered plugin: OmniOS guest.
99
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/openbsd/plugin.rb
100
- INFO manager: Registered plugin: OpenBSD guest
101
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/photon/plugin.rb
102
- INFO manager: Registered plugin: VMware Photon guest
103
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/pld/plugin.rb
104
- INFO manager: Registered plugin: PLD Linux guest
105
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/redhat/plugin.rb
106
- INFO manager: Registered plugin: Red Hat Enterprise Linux guest
107
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/smartos/plugin.rb
108
- INFO manager: Registered plugin: SmartOS guest.
109
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/solaris/plugin.rb
110
- INFO manager: Registered plugin: Solaris guest.
111
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/solaris11/plugin.rb
112
- INFO manager: Registered plugin: Solaris 11 guest.
113
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/suse/plugin.rb
114
- INFO manager: Registered plugin: SUSE guest
115
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/tinycore/plugin.rb
116
- INFO manager: Registered plugin: TinyCore Linux guest.
117
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/ubuntu/plugin.rb
118
- INFO manager: Registered plugin: Ubuntu guest
119
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/guests/windows/plugin.rb
120
- INFO manager: Registered plugin: Windows guest.
121
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/arch/plugin.rb
122
- INFO manager: Registered plugin: Arch host
123
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/bsd/plugin.rb
124
- INFO manager: Registered plugin: BSD host
125
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/darwin/plugin.rb
126
- INFO manager: Registered plugin: Mac OS X host
127
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/freebsd/plugin.rb
128
- INFO manager: Registered plugin: FreeBSD host
129
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/gentoo/plugin.rb
130
- INFO manager: Registered plugin: Gentoo host
131
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/linux/plugin.rb
132
- INFO manager: Registered plugin: Linux host
133
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/null/plugin.rb
134
- INFO manager: Registered plugin: null host
135
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/redhat/plugin.rb
136
- INFO manager: Registered plugin: Red Hat Enterprise Linux host
137
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/slackware/plugin.rb
138
- INFO manager: Registered plugin: Slackware host
139
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/suse/plugin.rb
140
- INFO manager: Registered plugin: SUSE host
141
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/hosts/windows/plugin.rb
142
- INFO manager: Registered plugin: Windows host
143
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/kernel_v1/plugin.rb
144
- INFO manager: Registered plugin: kernel
145
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/kernel_v2/plugin.rb
146
- INFO manager: Registered plugin: kernel
147
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/docker/plugin.rb
148
- INFO manager: Registered plugin: docker-provider
149
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/hyperv/plugin.rb
150
- INFO manager: Registered plugin: Hyper-V provider
151
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb
152
- INFO manager: Registered plugin: VirtualBox provider
153
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/ansible/plugin.rb
154
- INFO manager: Registered plugin: ansible
155
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/cfengine/plugin.rb
156
- INFO manager: Registered plugin: CFEngine Provisioner
157
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/chef/plugin.rb
158
- INFO manager: Registered plugin: chef
159
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/docker/plugin.rb
160
- INFO manager: Registered plugin: docker
161
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/file/plugin.rb
162
- INFO manager: Registered plugin: file
163
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/puppet/plugin.rb
164
- INFO manager: Registered plugin: puppet
165
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/salt/plugin.rb
166
- INFO manager: Registered plugin: salt
167
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/provisioners/shell/plugin.rb
168
- INFO manager: Registered plugin: shell
169
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/pushes/atlas/plugin.rb
170
- INFO manager: Registered plugin: atlas
171
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/pushes/ftp/plugin.rb
172
- INFO manager: Registered plugin: ftp
173
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/pushes/heroku/plugin.rb
174
- INFO manager: Registered plugin: heroku
175
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/pushes/local-exec/plugin.rb
176
- INFO manager: Registered plugin: local-exec
177
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/pushes/noop/plugin.rb
178
- INFO manager: Registered plugin: noop
179
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/synced_folders/nfs/plugin.rb
180
- INFO manager: Registered plugin: NFS synced folders
181
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/synced_folders/rsync/plugin.rb
182
- INFO manager: Registered plugin: RSync synced folders
183
- DEBUG global: Loading core plugin: /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/synced_folders/smb/plugin.rb
184
- INFO manager: Registered plugin: SMB synced folders
185
- INFO global: Loading plugins!
186
- INFO manager: Registered plugin: vagrant-parallels
187
- INFO vagrant: `vagrant` invoked: ["up", "ubuntu", "ubuntu_2", "--debug"]
188
- DEBUG vagrant: Creating Vagrant environment
189
- INFO environment: Environment initialized (#<Vagrant::Environment:0x007fa0eb9913b0>)
190
- INFO environment: - cwd: /Users/legal/Documents/vagrant-parallels
191
- INFO environment: Home path: /Users/legal/.vagrant.d
192
- INFO environment: Local data path: /Users/legal/Documents/vagrant-parallels/.vagrant
193
- DEBUG environment: Creating: /Users/legal/Documents/vagrant-parallels/.vagrant
194
- INFO environment: Running hook: environment_plugins_loaded
195
- INFO runner: Preparing hooks for middleware sequence...
196
- INFO runner: 1 hooks defined.
197
- INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x007fa0eb8ce3b0>
198
- INFO environment: Running hook: environment_load
199
- INFO runner: Preparing hooks for middleware sequence...
200
- INFO runner: 1 hooks defined.
201
- INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x007fa0eab08398>
202
- INFO interface: warn: You appear to be running Vagrant outside of the official installers.
203
- Note that the installers are what ensure that Vagrant has all required
204
- dependencies, and Vagrant assumes that these dependencies exist. By
205
- running outside of the installer environment, Vagrant may not function
206
- properly. To remove this warning, install Vagrant using one of the
207
- official packages from vagrantup.com.
208
-
209
- INFO cli: CLI: [] "up" ["ubuntu", "ubuntu_2"]
210
- DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command ["ubuntu", "ubuntu_2"]
211
- DEBUG command: 'Up' each target VM...
212
- DEBUG command: Getting target VMs for command. Arguments:
213
- DEBUG command: -- names: ["ubuntu", "ubuntu_2"]
214
- DEBUG command: -- options: {:provider=>nil}
215
- DEBUG command: Finding machine that match name: ubuntu
216
- INFO loader: Set :home = ["#<Pathname:/Users/legal/.vagrant.d/Vagrantfile>"]
217
- DEBUG loader: Populating proc cache for #<Pathname:/Users/legal/.vagrant.d/Vagrantfile>
218
- DEBUG loader: Load procs for pathname: /Users/legal/.vagrant.d/Vagrantfile
219
- INFO loader: Set :root = ["#<Pathname:/Users/legal/Documents/vagrant-parallels/Vagrantfile>"]
220
- DEBUG loader: Populating proc cache for #<Pathname:/Users/legal/Documents/vagrant-parallels/Vagrantfile>
221
- DEBUG loader: Load procs for pathname: /Users/legal/Documents/vagrant-parallels/Vagrantfile
222
- INFO loader: Loading configuration in order: [:home, :root]
223
- DEBUG loader: Loading from: home (evaluating)
224
- DEBUG loader: Loading from: root (evaluating)
225
- DEBUG loader: Configuration loaded successfully, finalizing and returning
226
- DEBUG push: finalizing
227
- INFO loader: Set "70164563601380_machine_ubuntu" = ["[\"2\", #<Proc:0x007fa0ebc6ed58@/Users/legal/Documents/vagrant-parallels/Vagrantfile:3>]"]
228
- DEBUG loader: Populating proc cache for ["2", #<Proc:0x007fa0ebc6ed58@/Users/legal/Documents/vagrant-parallels/Vagrantfile:3>]
229
- INFO loader: Loading configuration in order: [:home, :root, "70164563601380_machine_ubuntu"]
230
- DEBUG loader: Loading from: home (cache)
231
- DEBUG loader: Loading from: root (cache)
232
- DEBUG loader: Loading from: 70164563601380_machine_ubuntu (evaluating)
233
- DEBUG loader: Configuration loaded successfully, finalizing and returning
234
- DEBUG push: finalizing
235
- INFO base: prlctl path: /usr/local/bin/prlctl
236
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
237
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
238
- INFO subprocess: Vagrant not running in installer, restoring original environment...
239
- DEBUG subprocess: Selecting on IO
240
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
241
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
242
- DEBUG subprocess: Exit status: 0
243
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
244
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
245
- INFO subprocess: Vagrant not running in installer, restoring original environment...
246
- DEBUG subprocess: Selecting on IO
247
- DEBUG subprocess: stdout: {
248
- "status": "ACTIVE",
249
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
250
- "user": "",
251
- "organization": "",
252
- "start_date": "04/16/2015 03:00:00",
253
- "expiration": "04/16/2017 03:00:00",
254
- "unconfirmed_expiration_date": "11/01/2015 16:43:28",
255
- "graceperiod": 0,
256
- "cpu_total": 16,
257
- "max_memory": 65536,
258
- "is_confirmed": "yes",
259
- "edition": "pro",
260
- "is_volume": "no",
261
- "advanced_restrictions": "disabled",
262
- "deferred_activation": "disabled"
263
- }
264
-
265
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
266
- DEBUG subprocess: Exit status: 0
267
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
268
- INFO base: prlctl path: /usr/local/bin/prlctl
269
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
270
- INFO environment: Getting machine: ubuntu (parallels)
271
- INFO environment: Uncached load of machine.
272
- INFO base: prlctl path: /usr/local/bin/prlctl
273
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
274
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
275
- INFO subprocess: Vagrant not running in installer, restoring original environment...
276
- DEBUG subprocess: Selecting on IO
277
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
278
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
279
- DEBUG subprocess: Exit status: 0
280
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
281
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
282
- INFO subprocess: Vagrant not running in installer, restoring original environment...
283
- DEBUG subprocess: Selecting on IO
284
- DEBUG subprocess: stdout: {
285
- "status": "ACTIVE",
286
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
287
- "user": "",
288
- "organization": "",
289
- "start_date": "04/16/2015 03:00:00",
290
- "expiration": "04/16/2017 03:00:00",
291
- "unconfirmed_expiration_date": "11/01/2015 16:43:28",
292
- "graceperiod": 0,
293
- "cpu_total": 16,
294
- "max_memory": 65536,
295
- "is_confirmed": "yes",
296
- "edition": "pro",
297
- "is_volume": "no",
298
- "advanced_restrictions": "disabled",
299
- "deferred_activation": "disabled"
300
- }
301
-
302
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
303
- DEBUG subprocess: Exit status: 0
304
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
305
- INFO base: prlctl path: /usr/local/bin/prlctl
306
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
307
- INFO loader: Set "70164563601380_machine_ubuntu" = ["[\"2\", #<Proc:0x007fa0ebc6ed58@/Users/legal/Documents/vagrant-parallels/Vagrantfile:3>]"]
308
- INFO loader: Loading configuration in order: [:home, :root, "70164563601380_machine_ubuntu"]
309
- DEBUG loader: Loading from: home (cache)
310
- DEBUG loader: Loading from: root (cache)
311
- DEBUG loader: Loading from: 70164563601380_machine_ubuntu (cache)
312
- DEBUG loader: Configuration loaded successfully, finalizing and returning
313
- DEBUG push: finalizing
314
- INFO box_collection: Box found: parallels/ubuntu-14.04 (parallels)
315
- INFO environment: Running hook: authenticate_box_url
316
- INFO host: Autodetecting host type for [#<Vagrant::Environment: /Users/legal/Documents/vagrant-parallels>]
317
- DEBUG host: Trying: arch
318
- DEBUG host: Trying: darwin
319
- INFO host: Detected: darwin!
320
- INFO runner: Preparing hooks for middleware sequence...
321
- INFO runner: 2 hooks defined.
322
- INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x007fa0ebb5e6c0>
323
- INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x007fa0eb637408>
324
- DEBUG client: No authentication token in environment or /Users/legal/.vagrant.d/data/vagrant_login_token
325
- INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x007fa0eb637408>
326
- INFO loader: Set :"70164557762780_parallels/ubuntu-14.04_parallels" = ["#<Pathname:/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/Vagrantfile>"]
327
- DEBUG loader: Populating proc cache for #<Pathname:/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/Vagrantfile>
328
- DEBUG loader: Load procs for pathname: /Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/Vagrantfile
329
- INFO loader: Loading configuration in order: [:"70164557762780_parallels/ubuntu-14.04_parallels", :home, :root, "70164563601380_machine_ubuntu"]
330
- DEBUG loader: Loading from: home (cache)
331
- DEBUG loader: Loading from: root (cache)
332
- DEBUG loader: Loading from: 70164563601380_machine_ubuntu (cache)
333
- DEBUG loader: Configuration loaded successfully, finalizing and returning
334
- DEBUG push: finalizing
335
- INFO machine: Initializing machine: ubuntu
336
- INFO machine: - Provider: VagrantPlugins::Parallels::Provider
337
- INFO machine: - Box: #<Vagrant::Box:0x007fa0ee052328>
338
- INFO machine: - Data dir: /Users/legal/Documents/vagrant-parallels/.vagrant/machines/ubuntu/parallels
339
- DEBUG parallels: Instantiating the driver for machine ID: nil
340
- INFO base: prlctl path: /usr/local/bin/prlctl
341
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
342
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
343
- INFO subprocess: Vagrant not running in installer, restoring original environment...
344
- DEBUG subprocess: Selecting on IO
345
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
346
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
347
- DEBUG subprocess: Exit status: 0
348
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
349
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
350
- INFO subprocess: Vagrant not running in installer, restoring original environment...
351
- DEBUG subprocess: Selecting on IO
352
- DEBUG subprocess: stdout: {
353
- "status": "ACTIVE",
354
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
355
- "user": "",
356
- "organization": "",
357
- "start_date": "04/16/2015 03:00:00",
358
- "expiration": "04/16/2017 03:00:00",
359
- "unconfirmed_expiration_date": "11/01/2015 16:43:29",
360
- "graceperiod": 0,
361
- "cpu_total": 16,
362
- "max_memory": 65536,
363
- "is_confirmed": "yes",
364
- "edition": "pro",
365
- "is_volume": "no",
366
- "advanced_restrictions": "disabled",
367
- "deferred_activation": "disabled"
368
- }
369
-
370
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
371
- DEBUG subprocess: Exit status: 0
372
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
373
- INFO base: prlctl path: /usr/local/bin/prlctl
374
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
375
- INFO machine: New machine ID: nil
376
- DEBUG parallels: Instantiating the driver for machine ID: nil
377
- INFO base: prlctl path: /usr/local/bin/prlctl
378
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
379
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
380
- INFO subprocess: Vagrant not running in installer, restoring original environment...
381
- DEBUG subprocess: Selecting on IO
382
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
383
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
384
- DEBUG subprocess: Exit status: 0
385
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
386
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
387
- INFO subprocess: Vagrant not running in installer, restoring original environment...
388
- DEBUG subprocess: Selecting on IO
389
- DEBUG subprocess: stdout: {
390
- "status": "ACTIVE",
391
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
392
- "user": "",
393
- "organization": "",
394
- "start_date": "04/16/2015 03:00:00",
395
- "expiration": "04/16/2017 03:00:00",
396
- "unconfirmed_expiration_date": "11/01/2015 16:43:30",
397
- "graceperiod": 0,
398
- "cpu_total": 16,
399
- "max_memory": 65536,
400
- "is_confirmed": "yes",
401
- "edition": "pro",
402
- "is_volume": "no",
403
- "advanced_restrictions": "disabled",
404
- "deferred_activation": "disabled"
405
- }
406
-
407
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
408
- DEBUG subprocess: Exit status: 0
409
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
410
- INFO base: prlctl path: /usr/local/bin/prlctl
411
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
412
- DEBUG command: Finding machine that match name: ubuntu_2
413
- INFO loader: Set "70164563601380_machine_ubuntu_2" = ["[\"2\", #<Proc:0x007fa0ebc6eb78@/Users/legal/Documents/vagrant-parallels/Vagrantfile:23>]"]
414
- DEBUG loader: Populating proc cache for ["2", #<Proc:0x007fa0ebc6eb78@/Users/legal/Documents/vagrant-parallels/Vagrantfile:23>]
415
- INFO loader: Loading configuration in order: [:home, :root, "70164563601380_machine_ubuntu_2"]
416
- ERROR loader: Unknown config sources: ["70164563601380_machine_ubuntu", :"70164557762780_parallels/ubuntu-14.04_parallels"]
417
- DEBUG loader: Loading from: home (cache)
418
- DEBUG loader: Loading from: root (cache)
419
- DEBUG loader: Loading from: 70164563601380_machine_ubuntu_2 (evaluating)
420
- DEBUG loader: Configuration loaded successfully, finalizing and returning
421
- DEBUG push: finalizing
422
- INFO base: prlctl path: /usr/local/bin/prlctl
423
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
424
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
425
- INFO subprocess: Vagrant not running in installer, restoring original environment...
426
- DEBUG subprocess: Selecting on IO
427
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
428
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
429
- DEBUG subprocess: Exit status: 0
430
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
431
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
432
- INFO subprocess: Vagrant not running in installer, restoring original environment...
433
- DEBUG subprocess: Selecting on IO
434
- DEBUG subprocess: stdout: {
435
- "status": "ACTIVE",
436
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
437
- "user": "",
438
- "organization": "",
439
- "start_date": "04/16/2015 03:00:00",
440
- "expiration": "04/16/2017 03:00:00",
441
- "unconfirmed_expiration_date": "11/01/2015 16:43:30",
442
- "graceperiod": 0,
443
- "cpu_total": 16,
444
- "max_memory": 65536,
445
- "is_confirmed": "yes",
446
- "edition": "pro",
447
- "is_volume": "no",
448
- "advanced_restrictions": "disabled",
449
- "deferred_activation": "disabled"
450
- }
451
-
452
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
453
- DEBUG subprocess: Exit status: 0
454
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
455
- INFO base: prlctl path: /usr/local/bin/prlctl
456
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
457
- INFO environment: Getting machine: ubuntu_2 (parallels)
458
- INFO environment: Uncached load of machine.
459
- INFO base: prlctl path: /usr/local/bin/prlctl
460
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
461
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
462
- INFO subprocess: Vagrant not running in installer, restoring original environment...
463
- DEBUG subprocess: Selecting on IO
464
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
465
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
466
- DEBUG subprocess: Exit status: 0
467
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
468
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
469
- INFO subprocess: Vagrant not running in installer, restoring original environment...
470
- DEBUG subprocess: Selecting on IO
471
- DEBUG subprocess: stdout: {
472
- "status": "ACTIVE",
473
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
474
- "user": "",
475
- "organization": "",
476
- "start_date": "04/16/2015 03:00:00",
477
- "expiration": "04/16/2017 03:00:00",
478
- "unconfirmed_expiration_date": "11/01/2015 16:43:30",
479
- "graceperiod": 0,
480
- "cpu_total": 16,
481
- "max_memory": 65536,
482
- "is_confirmed": "yes",
483
- "edition": "pro",
484
- "is_volume": "no",
485
- "advanced_restrictions": "disabled",
486
- "deferred_activation": "disabled"
487
- }
488
-
489
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
490
- DEBUG subprocess: Exit status: 0
491
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
492
- INFO base: prlctl path: /usr/local/bin/prlctl
493
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
494
- INFO loader: Set "70164563601380_machine_ubuntu_2" = ["[\"2\", #<Proc:0x007fa0ebc6eb78@/Users/legal/Documents/vagrant-parallels/Vagrantfile:23>]"]
495
- INFO loader: Loading configuration in order: [:home, :root, "70164563601380_machine_ubuntu_2"]
496
- ERROR loader: Unknown config sources: ["70164563601380_machine_ubuntu", :"70164557762780_parallels/ubuntu-14.04_parallels"]
497
- DEBUG loader: Loading from: home (cache)
498
- DEBUG loader: Loading from: root (cache)
499
- DEBUG loader: Loading from: 70164563601380_machine_ubuntu_2 (cache)
500
- DEBUG loader: Configuration loaded successfully, finalizing and returning
501
- DEBUG push: finalizing
502
- INFO box_collection: Box found: parallels/ubuntu-14.04 (parallels)
503
- INFO environment: Running hook: authenticate_box_url
504
- INFO runner: Preparing hooks for middleware sequence...
505
- INFO runner: 2 hooks defined.
506
- INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x007fa0ebeb4ce8>
507
- INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x007fa0ebeadd08>
508
- DEBUG client: No authentication token in environment or /Users/legal/.vagrant.d/data/vagrant_login_token
509
- INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x007fa0ebeadd08>
510
- INFO loader: Set :"70164557762780_parallels/ubuntu-14.04_parallels" = ["#<Pathname:/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/Vagrantfile>"]
511
- INFO loader: Loading configuration in order: [:"70164557762780_parallels/ubuntu-14.04_parallels", :home, :root, "70164563601380_machine_ubuntu_2"]
512
- ERROR loader: Unknown config sources: ["70164563601380_machine_ubuntu"]
513
- DEBUG loader: Loading from: home (cache)
514
- DEBUG loader: Loading from: root (cache)
515
- DEBUG loader: Loading from: 70164563601380_machine_ubuntu_2 (cache)
516
- DEBUG loader: Configuration loaded successfully, finalizing and returning
517
- DEBUG push: finalizing
518
- INFO machine: Initializing machine: ubuntu_2
519
- INFO machine: - Provider: VagrantPlugins::Parallels::Provider
520
- INFO machine: - Box: #<Vagrant::Box:0x007fa0ebe47b70>
521
- INFO machine: - Data dir: /Users/legal/Documents/vagrant-parallels/.vagrant/machines/ubuntu_2/parallels
522
- DEBUG parallels: Instantiating the driver for machine ID: nil
523
- INFO base: prlctl path: /usr/local/bin/prlctl
524
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
525
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
526
- INFO subprocess: Vagrant not running in installer, restoring original environment...
527
- DEBUG subprocess: Selecting on IO
528
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
529
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
530
- DEBUG subprocess: Exit status: 0
531
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
532
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
533
- INFO subprocess: Vagrant not running in installer, restoring original environment...
534
- DEBUG subprocess: Selecting on IO
535
- DEBUG subprocess: stdout: {
536
- "status": "ACTIVE",
537
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
538
- "user": "",
539
- "organization": "",
540
- "start_date": "04/16/2015 03:00:00",
541
- "expiration": "04/16/2017 03:00:00",
542
- "unconfirmed_expiration_date": "11/01/2015 16:43:31",
543
- "graceperiod": 0,
544
- "cpu_total": 16,
545
- "max_memory": 65536,
546
- "is_confirmed": "yes",
547
- "edition": "pro",
548
- "is_volume": "no",
549
- "advanced_restrictions": "disabled",
550
- "deferred_activation": "disabled"
551
- }
552
-
553
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
554
- DEBUG subprocess: Exit status: 0
555
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
556
- INFO base: prlctl path: /usr/local/bin/prlctl
557
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
558
- INFO machine: New machine ID: nil
559
- DEBUG parallels: Instantiating the driver for machine ID: nil
560
- INFO base: prlctl path: /usr/local/bin/prlctl
561
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
562
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "--version"]
563
- INFO subprocess: Vagrant not running in installer, restoring original environment...
564
- DEBUG subprocess: Selecting on IO
565
- DEBUG subprocess: stdout: prlctl version 11.0.2 (31348)
566
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
567
- DEBUG subprocess: Exit status: 0
568
- DEBUG meta: Finding driver for Parallels Desktop version: 11.0.2
569
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--license", "--json"]
570
- INFO subprocess: Vagrant not running in installer, restoring original environment...
571
- DEBUG subprocess: Selecting on IO
572
- DEBUG subprocess: stdout: {
573
- "status": "ACTIVE",
574
- "serial": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
575
- "user": "",
576
- "organization": "",
577
- "start_date": "04/16/2015 03:00:00",
578
- "expiration": "04/16/2017 03:00:00",
579
- "unconfirmed_expiration_date": "11/01/2015 16:43:31",
580
- "graceperiod": 0,
581
- "cpu_total": 16,
582
- "max_memory": 65536,
583
- "is_confirmed": "yes",
584
- "edition": "pro",
585
- "is_volume": "no",
586
- "advanced_restrictions": "disabled",
587
- "deferred_activation": "disabled"
588
- }
589
-
590
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
591
- DEBUG subprocess: Exit status: 0
592
- INFO meta: Using Parallels driver: VagrantPlugins::Parallels::Driver::PD_11
593
- INFO base: prlctl path: /usr/local/bin/prlctl
594
- INFO base: prlsrvctl path: /usr/local/bin/prlsrvctl
595
- INFO command: With machine: ubuntu (#<VagrantPlugins::Parallels::Provider:0x007fa0ebf0d578 @logger=#<Log4r::Logger:0x007fa0ebf0d500 @fullname="vagrant::provider::parallels", @outputters=[], @additive=true, @name="parallels", @path="vagrant::provider", @parent=#<Log4r::Logger:0x007fa0eaaafb30 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: ubuntu (VagrantPlugins::Parallels::Provider)>, @driver=#<VagrantPlugins::Parallels::Driver::Meta:0x007fa0eae6e488 @uuid=nil, @logger=#<Log4r::Logger:0x007fa0eae2e2c0 @fullname="vagrant_parallels::driver::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant_parallels::driver", @parent=#<Log4r::Logger:0x007fa0eb2e6dd0 @fullname="vagrant_parallels", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant_parallels", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @prlctl_path="/usr/local/bin/prlctl", @prlsrvctl_path="/usr/local/bin/prlsrvctl", @prldisktool_path="/usr/local/bin/prl_disk_tool", @version="11.0.2", @driver=#<VagrantPlugins::Parallels::Driver::PD_11:0x007fa0ead551a0 @uuid=nil, @logger=#<Log4r::Logger:0x007fa0eb294da0 @fullname="vagrant_parallels::driver::pd_11", @outputters=[], @additive=true, @name="pd_11", @path="vagrant_parallels::driver", @parent=#<Log4r::Logger:0x007fa0eb2e6dd0 @fullname="vagrant_parallels", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant_parallels", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @prlctl_path="/usr/local/bin/prlctl", @prlsrvctl_path="/usr/local/bin/prlsrvctl", @prldisktool_path="/usr/local/bin/prl_disk_tool">>, @cap_logger=#<Log4r::Logger:0x007fa0eb365ae0 @fullname="vagrant::capability_host::vagrantplugins::parallels::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::parallels", @parent=#<Log4r::Logger:0x007fa0eaaafb30 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:parallels, #<#<Class:0x007fa0eb366210>:0x007fa0eb3260e8>]], @cap_args=[#<Vagrant::Machine: ubuntu (VagrantPlugins::Parallels::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x007fa0eb366008 @items={:public_address=>#<Proc:0x007fa0ea0dcc98@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/docker/plugin.rb:54>, :proxy_machine=>#<Proc:0x007fa0ea0d7978@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/docker/plugin.rb:59>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x007fa0eb365f40 @items={:public_address=>#<Proc:0x007fa0eabbb858@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x007fa0eb365e50 @items={:forwarded_ports=>#<Proc:0x007fa0eb0a9338@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x007fa0eb0a9248@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb:32>, :snapshot_list=>#<Proc:0x007fa0eb0a8eb0@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb:37>}, @results_cache={}>, :parallels=>#<Vagrant::Registry:0x007fa0eb365d38 @items={:public_address=>#<Proc:0x007fa0ebaaf828@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:66>, :host_address=>#<Proc:0x007fa0ebaaf788@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:71>, :nic_mac_addresses=>#<Proc:0x007fa0ebaaf760@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:76>, :snapshot_list=>#<Proc:0x007fa0ebaaf738@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:81>}, @results_cache={}>}>)
596
- INFO interface: info: Bringing machine 'ubuntu' up with 'parallels' provider...
597
- INFO command: With machine: ubuntu_2 (#<VagrantPlugins::Parallels::Provider:0x007fa0eaeec540 @logger=#<Log4r::Logger:0x007fa0eaeec4c8 @fullname="vagrant::provider::parallels", @outputters=[], @additive=true, @name="parallels", @path="vagrant::provider", @parent=#<Log4r::Logger:0x007fa0eaaafb30 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: ubuntu_2 (VagrantPlugins::Parallels::Provider)>, @driver=#<VagrantPlugins::Parallels::Driver::Meta:0x007fa0eb1b4ae8 @uuid=nil, @logger=#<Log4r::Logger:0x007fa0eac25618 @fullname="vagrant_parallels::driver::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant_parallels::driver", @parent=#<Log4r::Logger:0x007fa0ee091280 @fullname="vagrant_parallels", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant_parallels", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @prlctl_path="/usr/local/bin/prlctl", @prlsrvctl_path="/usr/local/bin/prlsrvctl", @prldisktool_path="/usr/local/bin/prl_disk_tool", @version="11.0.2", @driver=#<VagrantPlugins::Parallels::Driver::PD_11:0x007fa0eabb0bd8 @uuid=nil, @logger=#<Log4r::Logger:0x007fa0eba8cc60 @fullname="vagrant_parallels::driver::pd_11", @outputters=[], @additive=true, @name="pd_11", @path="vagrant_parallels::driver", @parent=#<Log4r::Logger:0x007fa0ee091280 @fullname="vagrant_parallels", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant_parallels", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @prlctl_path="/usr/local/bin/prlctl", @prlsrvctl_path="/usr/local/bin/prlsrvctl", @prldisktool_path="/usr/local/bin/prl_disk_tool">>, @cap_logger=#<Log4r::Logger:0x007fa0ebc0d760 @fullname="vagrant::capability_host::vagrantplugins::parallels::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::parallels", @parent=#<Log4r::Logger:0x007fa0eaaafb30 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x007fa0eb983e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fa0eb983da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x007fa0eb981280 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x007fa0eaaafa18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:parallels, #<#<Class:0x007fa0ebc0e070>:0x007fa0eb145e18>]], @cap_args=[#<Vagrant::Machine: ubuntu_2 (VagrantPlugins::Parallels::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x007fa0ebc0de90 @items={:public_address=>#<Proc:0x007fa0ea0dcc98@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/docker/plugin.rb:54>, :proxy_machine=>#<Proc:0x007fa0ea0d7978@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/docker/plugin.rb:59>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x007fa0ebc0dd00 @items={:public_address=>#<Proc:0x007fa0eabbb858@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x007fa0ebc0dc10 @items={:forwarded_ports=>#<Proc:0x007fa0eb0a9338@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x007fa0eb0a9248@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb:32>, :snapshot_list=>#<Proc:0x007fa0eb0a8eb0@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/providers/virtualbox/plugin.rb:37>}, @results_cache={}>, :parallels=>#<Vagrant::Registry:0x007fa0ebc0dad0 @items={:public_address=>#<Proc:0x007fa0ebaaf828@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:66>, :host_address=>#<Proc:0x007fa0ebaaf788@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:71>, :nic_mac_addresses=>#<Proc:0x007fa0ebaaf760@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:76>, :snapshot_list=>#<Proc:0x007fa0ebaaf738@/Users/legal/Documents/vagrant-parallels/lib/vagrant-parallels/plugin.rb:81>}, @results_cache={}>}>)
598
- INFO interface: info: Bringing machine 'ubuntu_2' up with 'parallels' provider...
599
- INFO batch_action: Enabling parallelization by default.
600
- INFO batch_action: Batch action will parallelize: true
601
- INFO batch_action: Starting action: #<Vagrant::Machine:0x007fa0ebf7e548> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
602
- INFO machine: Calling action: up on provider Parallels (new VM)
603
- INFO batch_action: Starting action: #<Vagrant::Machine:0x007fa0ebd351b0> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
604
- DEBUG environment: Attempting to acquire process-lock: machine-action-f362ef49604eb8e907a8b026fa5bf97c
605
- INFO machine: Calling action: up on provider Parallels (new VM)
606
- DEBUG environment: Attempting to acquire process-lock: dotlock
607
- DEBUG environment: Attempting to acquire process-lock: machine-action-d921052b1514bbbdcd983c81641e34fc
608
- DEBUG environment: Attempting to acquire process-lock: dotlock
609
- INFO environment: Acquired process lock: dotlock
610
- WARN environment: Process-lock in use: dotlock
611
- INFO environment: Released process lock: dotlock
612
- INFO environment: Acquired process lock: machine-action-f362ef49604eb8e907a8b026fa5bf97c
613
- INFO runner: Preparing hooks for middleware sequence...
614
- INFO runner: 1 hooks defined.
615
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fa0eaa77aa0>
616
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007fa0ea0b4388>
617
- INFO runner: Preparing hooks for middleware sequence...
618
- INFO runner: 1 hooks defined.
619
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fa0eb013680>
620
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x007fa0eb00b4d0>
621
- DEBUG is_state: Checking if machine state is 'not_created'
622
- DEBUG is_state: -- Machine state: not_created
623
- INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x007fa0eb00b4d0>
624
- INFO runner: Preparing hooks for middleware sequence...
625
- INFO runner: 1 hooks defined.
626
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x007fa0eb62d818>
627
- INFO warden: Calling IN action: #<Proc:0x007fa0eaf54de8@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/action/warden.rb:94 (lambda)>
628
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x007fa0eb62d7a0>
629
- INFO handle_box: Machine already has box. HandleBox will not run.
630
- INFO warden: Calling IN action: #<Proc:0x007fa0eb5fc880@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/action/warden.rb:94 (lambda)>
631
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x007fa0ea0b4310>
632
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007fa0ea0b4298>
633
- INFO runner: Preparing hooks for middleware sequence...
634
- INFO runner: 1 hooks defined.
635
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fa0eb59f090>
636
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x007fa0eb59c4d0>
637
- DEBUG is_state: Checking if machine state is 'not_created'
638
- DEBUG is_state: -- Machine state: not_created
639
- INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x007fa0eb59c4d0>
640
- INFO runner: Preparing hooks for middleware sequence...
641
- INFO runner: 1 hooks defined.
642
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x007fa0eb4e6cc0>
643
- INFO warden: Calling IN action: #<Proc:0x007fa0ebf94b40@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/action/warden.rb:94 (lambda)>
644
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Customize:0x007fa0eb4e6c48>
645
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::BoxRegister:0x007fa0eb4e6c20>
646
- DEBUG environment: Attempting to acquire process-lock: 3d65918628a37ef4f5d69379bd6fc832
647
- DEBUG environment: Attempting to acquire process-lock: dotlock
648
- INFO environment: Acquired process lock: dotlock
649
- INFO environment: Released process lock: dotlock
650
- INFO environment: Acquired process lock: 3d65918628a37ef4f5d69379bd6fc832
651
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "list", "{f9bbd58f-10a2-454c-bbf0-563a4a8087af}"]
652
- INFO subprocess: Vagrant not running in installer, restoring original environment...
653
- DEBUG subprocess: Selecting on IO
654
- INFO environment: Acquired process lock: dotlock
655
- INFO environment: Released process lock: dotlock
656
- INFO environment: Acquired process lock: machine-action-d921052b1514bbbdcd983c81641e34fc
657
- INFO runner: Preparing hooks for middleware sequence...
658
- INFO runner: 1 hooks defined.
659
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fa0ebf146e8>
660
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007fa0ebf0d2a8>
661
- INFO runner: Preparing hooks for middleware sequence...
662
- INFO runner: 1 hooks defined.
663
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fa0ebe75840>
664
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x007fa0ebe6ec70>
665
- DEBUG is_state: Checking if machine state is 'not_created'
666
- DEBUG is_state: -- Machine state: not_created
667
- INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x007fa0ebe6ec70>
668
- INFO runner: Preparing hooks for middleware sequence...
669
- INFO runner: 1 hooks defined.
670
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x007fa0ebe0c778>
671
- INFO warden: Calling IN action: #<Proc:0x007fa0ebda5d48@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/action/warden.rb:94 (lambda)>
672
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x007fa0ebe07f98>
673
- INFO handle_box: Machine already has box. HandleBox will not run.
674
- INFO warden: Calling IN action: #<Proc:0x007fa0ebdd7668@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/action/warden.rb:94 (lambda)>
675
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x007fa0ebf0d258>
676
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007fa0ebf0d230>
677
- INFO runner: Preparing hooks for middleware sequence...
678
- INFO runner: 1 hooks defined.
679
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fa0eb3f65e0>
680
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x007fa0eb3eeae8>
681
- DEBUG is_state: Checking if machine state is 'not_created'
682
- DEBUG is_state: -- Machine state: not_created
683
- INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x007fa0eb3eeae8>
684
- INFO runner: Preparing hooks for middleware sequence...
685
- INFO runner: 1 hooks defined.
686
- INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x007fa0eb366850>
687
- INFO warden: Calling IN action: #<Proc:0x007fa0eae2c1f0@/Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/action/warden.rb:94 (lambda)>
688
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Customize:0x007fa0eb366710>
689
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::BoxRegister:0x007fa0eb366698>
690
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "list", "{f9bbd58f-10a2-454c-bbf0-563a4a8087af}"]
691
- INFO subprocess: Vagrant not running in installer, restoring original environment...
692
- DEBUG subprocess: Selecting on IO
693
- DEBUG subprocess: stdout: UUID STATUS IP_ADDR NAME
694
- {f9bbd58f-10a2-454c-bbf0-563a4a8087af} stopped - ubuntu-14.04-amd64
695
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
696
- DEBUG subprocess: Exit status: 0
697
- INFO box_register: Box image 'parallels/ubuntu-14.04' is already registered (id={f9bbd58f-10a2-454c-bbf0-563a4a8087af}) - skipping register step.
698
- INFO environment: Released process lock: 3d65918628a37ef4f5d69379bd6fc832
699
- DEBUG environment: Attempting to acquire process-lock: dotlock
700
- INFO environment: Acquired process lock: dotlock
701
- INFO environment: Released process lock: dotlock
702
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::PrepareClone:0x007fa0eb4b68e0>
703
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::PrepareCloneSnapshot:0x007fa0eb4862d0>
704
- DEBUG environment: Attempting to acquire process-lock: 28551d7ae837d63787e2c6e9e33eac31
705
- DEBUG environment: Attempting to acquire process-lock: dotlock
706
- INFO environment: Acquired process lock: dotlock
707
- INFO environment: Released process lock: dotlock
708
- INFO environment: Acquired process lock: 28551d7ae837d63787e2c6e9e33eac31
709
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "list", "{f9bbd58f-10a2-454c-bbf0-563a4a8087af}", "--info", "--no-header", "--json"]
710
- INFO subprocess: Vagrant not running in installer, restoring original environment...
711
- DEBUG subprocess: Selecting on IO
712
- DEBUG subprocess: stdout: UUID STATUS IP_ADDR NAME
713
- {f9bbd58f-10a2-454c-bbf0-563a4a8087af} stopped - ubuntu-14.04-amd64
714
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
715
- DEBUG subprocess: Exit status: 0
716
- INFO box_register: Box image 'parallels/ubuntu-14.04' is already registered (id={f9bbd58f-10a2-454c-bbf0-563a4a8087af}) - skipping register step.
717
- INFO warden: Calling IN action: #<Vagrant::Action::Builtin::PrepareClone:0x007fa0eb31f900>
718
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::PrepareCloneSnapshot:0x007fa0ebd3f610>
719
- INFO subprocess: Starting process: ["/usr/local/bin/prlctl", "list", "{f9bbd58f-10a2-454c-bbf0-563a4a8087af}", "--info", "--no-header", "--json"]
720
- INFO subprocess: Vagrant not running in installer, restoring original environment...
721
- DEBUG subprocess: Selecting on IO
722
- DEBUG subprocess: stdout: [
723
- {
724
- "ID": "f9bbd58f-10a2-454c-bbf0-563a4a8087af",
725
- "Name": "ubuntu-14.04-amd64",
726
- "Description": "",
727
- "Type": "VM",
728
- "State": "stopped",
729
- "OS": "ubuntu",
730
- "Template": "no",
731
- "Uptime": "0",
732
- "Home": "/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/ubuntu-14.04-amd64.pvm/",
733
- "GuestTools": {
734
- "state": "possibly_installed",
735
- "version": "11.0.1-31277"
736
- },
737
- "Autostart": "off",
738
- "Autostop": "suspend",
739
- "Autocompact": "off",
740
- "Startup view": "same",
741
- "On gui shutdown": "close",
742
- "On window close": "keep-running",
743
- "Undo disks": "off",
744
- "Boot order": "hdd0 cdrom0 net0 ",
745
- "EFI boot": "off",
746
- "Allow select boot device": "off",
747
- "External boot device": "",
748
- "Remote display": {
749
- "mode": "off",
750
- "address": "0.0.0.0"
751
- },
752
- "Remote display state": "stopped",
753
- "Hardware": {
754
- "cpu": {
755
- "cpus": 1,
756
- "VT-x": true,
757
- "hotplug": false,
758
- "accl": "high",
759
- "mode": "32"
760
- },
761
- "memory": {
762
- "size": "384Mb",
763
- "hotplug": false
764
- },
765
- "video": {
766
- "size": "32Mb",
767
- "3d acceleration": "highest",
768
- "vertical sync": "yes",
769
- "high resolution": "no"
770
- },
771
- "memory_quota": {
772
- "auto": true
773
- },
774
- "hdd0": {
775
- "enabled": true,
776
- "port": "sata:0",
777
- "image": "/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/ubuntu-14.04-amd64.pvm/harddisk1.hdd",
778
- "type": "expanded",
779
- "size": "40960Mb"
780
- },
781
- "cdrom0": {
782
- "enabled": true,
783
- "port": "sata:1",
784
- "image": "",
785
- "state": "disconnected"
786
- },
787
- "usb": {
788
- "enabled": true
789
- },
790
- "net0": {
791
- "enabled": true,
792
- "type": "shared",
793
- "mac": "001C427B5260",
794
- "card": "virtio"
795
- },
796
- "sound0": {
797
- "enabled": true,
798
- "output": "Default",
799
- "mixer": "Default"
800
- }
801
- },
802
- "Host Shared Folders": {
803
- "enabled": true
804
- },
805
- "Host defined sharing": "user home directory",
806
- "SmartMount": {
807
- "enabled": false
808
- },
809
- "Encrypted": "no",
810
- "Edit restricted": "no",
811
- "Protected": "no",
812
- "Smart mouse optimized for games": "auto",
813
- "Sticky mouse": "off",
814
- "Keyboard optimized for games": "off",
815
- "Automatic sharing cameras": "off",
816
- "Automatic sharing bluetooth": "off",
817
- "Support USB 3.0": "on",
818
- "Faster virtual machine": "on",
819
- "Adaptive hypervisor": "off",
820
- "Disabled Windows logo": "on",
821
- "Auto compress virtual disks": "off",
822
- "Nested virtualization": "off",
823
- "PMU virtualization": "off",
824
- "Longer battery life": "off",
825
- "Show battery status": "on",
826
- "Smart mount": "off",
827
- "Shared profile": "off",
828
- "Shared cloud": "off",
829
- "Guest-to-host apps sharing": "off",
830
- "Host-to-guest apps sharing": "off",
831
- "Show Windows systray in Mac menu": "on",
832
- "Auto-switch to full screen": "on",
833
- "Disable aero": "off",
834
- "Hide minimized windows": "off",
835
- "Lock VM on suspend": "off",
836
- "Isolate VM from host": "off",
837
- "Smart guard": "off",
838
- "Smart guard: notify before creation snapshot": "on",
839
- "Smart guard: interval of period creating snapshots": 86400,
840
- "Smart guard: maximum count of creating snapshots": 10,
841
- "Time Synchronization": "on"
842
- }
843
- ]
844
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
845
- DEBUG subprocess: Exit status: 0
846
- INFO prepare_clone_snapshot: Linked clone snapshot already exists, doing nothing
847
- INFO environment: Released process lock: 28551d7ae837d63787e2c6e9e33eac31
848
- DEBUG environment: Attempting to acquire process-lock: dotlock
849
- INFO environment: Acquired process lock: dotlock
850
- INFO environment: Released process lock: dotlock
851
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Import:0x007fa0eb455590>
852
- INFO import: Disabling password restrictions: clone-vm
853
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--json"]
854
- INFO subprocess: Vagrant not running in installer, restoring original environment...
855
- DEBUG subprocess: Selecting on IO
856
- DEBUG subprocess: stdout: [
857
- {
858
- "ID": "f9bbd58f-10a2-454c-bbf0-563a4a8087af",
859
- "Name": "ubuntu-14.04-amd64",
860
- "Description": "",
861
- "Type": "VM",
862
- "State": "stopped",
863
- "OS": "ubuntu",
864
- "Template": "no",
865
- "Uptime": "0",
866
- "Home": "/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/ubuntu-14.04-amd64.pvm/",
867
- "GuestTools": {
868
- "state": "possibly_installed",
869
- "version": "11.0.1-31277"
870
- },
871
- "Autostart": "off",
872
- "Autostop": "suspend",
873
- "Autocompact": "off",
874
- "Startup view": "same",
875
- "On gui shutdown": "close",
876
- "On window close": "keep-running",
877
- "Undo disks": "off",
878
- "Boot order": "hdd0 cdrom0 net0 ",
879
- "EFI boot": "off",
880
- "Allow select boot device": "off",
881
- "External boot device": "",
882
- "Remote display": {
883
- "mode": "off",
884
- "address": "0.0.0.0"
885
- },
886
- "Remote display state": "stopped",
887
- "Hardware": {
888
- "cpu": {
889
- "cpus": 1,
890
- "VT-x": true,
891
- "hotplug": false,
892
- "accl": "high",
893
- "mode": "32"
894
- },
895
- "memory": {
896
- "size": "384Mb",
897
- "hotplug": false
898
- },
899
- "video": {
900
- "size": "32Mb",
901
- "3d acceleration": "highest",
902
- "vertical sync": "yes",
903
- "high resolution": "no"
904
- },
905
- "memory_quota": {
906
- "auto": true
907
- },
908
- "hdd0": {
909
- "enabled": true,
910
- "port": "sata:0",
911
- "image": "/Users/legal/.vagrant.d/boxes/parallels-VAGRANTSLASH-ubuntu-14.04/1.0.8/parallels/ubuntu-14.04-amd64.pvm/harddisk1.hdd",
912
- "type": "expanded",
913
- "size": "40960Mb"
914
- },
915
- "cdrom0": {
916
- "enabled": true,
917
- "port": "sata:1",
918
- "image": "",
919
- "state": "disconnected"
920
- },
921
- "usb": {
922
- "enabled": true
923
- },
924
- "net0": {
925
- "enabled": true,
926
- "type": "shared",
927
- "mac": "001C427B5260",
928
- "card": "virtio"
929
- },
930
- "sound0": {
931
- "enabled": true,
932
- "output": "Default",
933
- "mixer": "Default"
934
- }
935
- },
936
- "Host Shared Folders": {
937
- "enabled": true
938
- },
939
- "Host defined sharing": "user home directory",
940
- "SmartMount": {
941
- "enabled": false
942
- },
943
- "Encrypted": "no",
944
- "Edit restricted": "no",
945
- "Protected": "no",
946
- "Smart mouse optimized for games": "auto",
947
- "Sticky mouse": "off",
948
- "Keyboard optimized for games": "off",
949
- "Automatic sharing cameras": "off",
950
- "Automatic sharing bluetooth": "off",
951
- "Support USB 3.0": "on",
952
- "Faster virtual machine": "on",
953
- "Adaptive hypervisor": "off",
954
- "Disabled Windows logo": "on",
955
- "Auto compress virtual disks": "off",
956
- "Nested virtualization": "off",
957
- "PMU virtualization": "off",
958
- "Longer battery life": "off",
959
- "Show battery status": "on",
960
- "Smart mount": "off",
961
- "Shared profile": "off",
962
- "Shared cloud": "off",
963
- "Guest-to-host apps sharing": "off",
964
- "Host-to-guest apps sharing": "off",
965
- "Show Windows systray in Mac menu": "on",
966
- "Auto-switch to full screen": "on",
967
- "Disable aero": "off",
968
- "Hide minimized windows": "off",
969
- "Lock VM on suspend": "off",
970
- "Isolate VM from host": "off",
971
- "Smart guard": "off",
972
- "Smart guard: notify before creation snapshot": "on",
973
- "Smart guard: interval of period creating snapshots": 86400,
974
- "Smart guard: maximum count of creating snapshots": 10,
975
- "Time Synchronization": "on"
976
- }
977
- ]
978
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
979
- DEBUG subprocess: Exit status: 0
980
- INFO prepare_clone_snapshot: Linked clone snapshot already exists, doing nothing
981
- INFO warden: Calling IN action: #<VagrantPlugins::Parallels::Action::Import:0x007fa0ebcfdbc0>
982
- INFO import: Disabling password restrictions: clone-vm
983
- INFO subprocess: Starting process: ["/usr/local/bin/prlsrvctl", "info", "--json"]
984
- INFO subprocess: Vagrant not running in installer, restoring original environment...
985
- DEBUG subprocess: Selecting on IO
986
- DEBUG subprocess: stdout: {
987
- "ID": "aec0dc7b-f6ff-4017-a5de-ec08a2d4c9d3",
988
- "Hostname": "127.0.0.1",
989
- "Version": "Desktop 11.0.2-31348",
990
- "OS": "Mac OS X 10.11.1(15B42)",
991
- "Started as service": "off",
992
- "VM home": "/Users/legal/Documents/Parallels",
993
- "Memory limit": {
994
- "mode": "auto"
995
- },
996
- "Minimal security level": "low",
997
- "Manage settings for new users": "allow",
998
- "CEP mechanism": "on",
999
- "Backup path": "/Users/Shared/Parallels/Backups",
1000
- "Backup temporary directory": "",
1001
- "Backup timeout": 3600,
1002
- "Default encryption plugin": "<parallels-default-plugin>",
1003
- "Verbose log": "off",
1004
- "Allow mobile clients": "off",
1005
- "Proxy connection state": "disconnected",
1006
- "Direct connection": "off",
1007
- "Log rotation": "on",
1008
- "Advanced security mode": "off",
1009
- "Proxy manager URL": "https://manager.staging.myparallels.com/xmlrpc/rpc.do",
1010
- "Web portal domain": "parallels.com",
1011
- "Host ID": "{989f08e4-6794-515c-9926-6fa37cdf7209}",
1012
- "Allow attach screenshots": "on",
1013
- "License": {
1014
- "state": "valid",
1015
- "key": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
1016
- "restricted": "false"
1017
- },
1018
- "Hardware Id": "{d8a34f9d-9239-5fec-ac60-9654a0661720}",
1019
- "Signed In": "yes",
1020
- "Hardware info": {
1021
- "/dev/disk0": {
1022
- "name": "APPLE SSD SM0512F (disk0)",
1023
- "type": "hdd"
1024
- },
1025
- "/dev/disk0s1": {
1026
- "name": "EFI System Partition",
1027
- "type": "hdd-part"
1028
- },
1029
- "/dev/disk0s2": {
1030
- "name": "Customer",
1031
- "type": "hdd-part"
1032
- },
1033
- "/dev/disk0s3": {
1034
- "name": "Recovery HD",
1035
- "type": "hdd-part"
1036
- },
1037
- "Default CD/DVD-ROM": {
1038
- "name": "Default CD/DVD-ROM",
1039
- "type": "cdrom"
1040
- },
1041
- "en0": {
1042
- "name": "Wi-Fi ",
1043
- "type": "net"
1044
- },
1045
- "en1": {
1046
- "name": "en1",
1047
- "type": "net"
1048
- },
1049
- "p2p0": {
1050
- "name": "p2p0",
1051
- "type": "net"
1052
- },
1053
- "awdl0": {
1054
- "name": "awdl0",
1055
- "type": "net"
1056
- },
1057
- "vboxnet0": {
1058
- "name": "vboxnet0",
1059
- "type": "net"
1060
- },
1061
- "en5": {
1062
- "name": "Display Ethernet",
1063
- "type": "net"
1064
- },
1065
- "vnic0": {
1066
- "name": "vnic0",
1067
- "type": "net"
1068
- },
1069
- "vnic1": {
1070
- "name": "vnic1",
1071
- "type": "net"
1072
- },
1073
- "14330000|05ac|828f|full|--|Empty": {
1074
- "name": "Apple Bluetooth USB Host Controller",
1075
- "type": "usb"
1076
- },
1077
- "40140000|05ac|1107|full|--|182F0066": {
1078
- "name": "Apple Display Audio",
1079
- "type": "usb"
1080
- },
1081
- "40150000|05ac|1112|high|--|CC2EAT019VDJ9FLP": {
1082
- "name": "Apple FaceTime HD Camera (Display)",
1083
- "type": "usb"
1084
- },
1085
- "40170000|05ac|9227|full|--|182F0066": {
1086
- "name": "Apple Thunderbolt Display",
1087
- "type": "usb"
1088
- },
1089
- "/dev/cu.Bluetooth-Incoming-Port": {
1090
- "name": "/dev/cu.Bluetooth-Incoming-Port",
1091
- "type": "serial"
1092
- }
1093
- }
1094
- }
1095
-
1096
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
1097
- DEBUG subprocess: Exit status: 0
1098
- DEBUG subprocess: stdout: {
1099
- "ID": "aec0dc7b-f6ff-4017-a5de-ec08a2d4c9d3",
1100
- "Hostname": "127.0.0.1",
1101
- "Version": "Desktop 11.0.2-31348",
1102
- "OS": "Mac OS X 10.11.1(15B42)",
1103
- "Started as service": "off",
1104
- "VM home": "/Users/legal/Documents/Parallels",
1105
- "Memory limit": {
1106
- "mode": "auto"
1107
- },
1108
- "Minimal security level": "low",
1109
- "Manage settings for new users": "allow",
1110
- "CEP mechanism": "on",
1111
- "Backup path": "/Users/Shared/Parallels/Backups",
1112
- "Backup temporary directory": "",
1113
- "Backup timeout": 3600,
1114
- "Default encryption plugin": "<parallels-default-plugin>",
1115
- "Verbose log": "off",
1116
- "Allow mobile clients": "off",
1117
- "Proxy connection state": "disconnected",
1118
- "Direct connection": "off",
1119
- "Log rotation": "on",
1120
- "Advanced security mode": "off",
1121
- "Proxy manager URL": "https://manager.staging.myparallels.com/xmlrpc/rpc.do",
1122
- "Web portal domain": "parallels.com",
1123
- "Host ID": "{989f08e4-6794-515c-9926-6fa37cdf7209}",
1124
- "Allow attach screenshots": "on",
1125
- "License": {
1126
- "state": "valid",
1127
- "key": "065-35600-47952-23971-20564-38465;078-26433-43376-56802-16468-38465;201-09909-22932-24018-21652-38467;243-34800-62292-23890-21588-38464;221-42755-23665-24018-20564-38464;075-09787-06836-23954-21652-38465",
1128
- "restricted": "false"
1129
- },
1130
- "Hardware Id": "{d8a34f9d-9239-5fec-ac60-9654a0661720}",
1131
- "Signed In": "yes",
1132
- "Hardware info": {
1133
- "/dev/disk0": {
1134
- "name": "APPLE SSD SM0512F (disk0)",
1135
- "type": "hdd"
1136
- },
1137
- "/dev/disk0s1": {
1138
- "name": "EFI System Partition",
1139
- "type": "hdd-part"
1140
- },
1141
- "/dev/disk0s2": {
1142
- "name": "Customer",
1143
- "type": "hdd-part"
1144
- },
1145
- "/dev/disk0s3": {
1146
- "name": "Recovery HD",
1147
- "type": "hdd-part"
1148
- },
1149
- "Default CD/DVD-ROM": {
1150
- "name": "Default CD/DVD-ROM",
1151
- "type": "cdrom"
1152
- },
1153
- "en0": {
1154
- "name": "Wi-Fi ",
1155
- "type": "net"
1156
- },
1157
- "en1": {
1158
- "name": "en1",
1159
- "type": "net"
1160
- },
1161
- "p2p0": {
1162
- "name": "p2p0",
1163
- "type": "net"
1164
- },
1165
- "awdl0": {
1166
- "name": "awdl0",
1167
- "type": "net"
1168
- },
1169
- "vboxnet0": {
1170
- "name": "vboxnet0",
1171
- "type": "net"
1172
- },
1173
- "en5": {
1174
- "name": "Display Ethernet",
1175
- "type": "net"
1176
- },
1177
- "vnic0": {
1178
- "name": "vnic0",
1179
- "type": "net"
1180
- },
1181
- "vnic1": {
1182
- "name": "vnic1",
1183
- "type": "net"
1184
- },
1185
- "14330000|05ac|828f|full|--|Empty": {
1186
- "name": "Apple Bluetooth USB Host Controller",
1187
- "type": "usb"
1188
- },
1189
- "40140000|05ac|1107|full|--|182F0066": {
1190
- "name": "Apple Display Audio",
1191
- "type": "usb"
1192
- },
1193
- "40150000|05ac|1112|high|--|CC2EAT019VDJ9FLP": {
1194
- "name": "Apple FaceTime HD Camera (Display)",
1195
- "type": "usb"
1196
- },
1197
- "40170000|05ac|9227|full|--|182F0066": {
1198
- "name": "Apple Thunderbolt Display",
1199
- "type": "usb"
1200
- },
1201
- "/dev/cu.Bluetooth-Incoming-Port": {
1202
- "name": "/dev/cu.Bluetooth-Incoming-Port",
1203
- "type": "serial"
1204
- }
1205
- }
1206
- }
1207
-
1208
- DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
1209
- DEBUG subprocess: Exit status: 0
1210
- DEBUG environment: Attempting to acquire process-lock: c5c1d32e2e97c121d74e98c6c4b0b741
1211
- INFO environment: Running hook: environment_unload
1212
- DEBUG environment: Attempting to acquire process-lock: dotlock
1213
- INFO runner: Preparing hooks for middleware sequence...
1214
- INFO runner: 1 hooks defined.
1215
- INFO environment: Acquired process lock: dotlock
1216
- INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x007fa0eac9dc30>
1217
- INFO environment: Released process lock: dotlock
1218
- INFO environment: Acquired process lock: c5c1d32e2e97c121d74e98c6c4b0b741
1219
- INFO interface: info: OLOLO: START!
1220
- INFO environment: Released process lock: c5c1d32e2e97c121d74e98c6c4b0b741
1221
- INFO environment: Released process lock: machine-action-d921052b1514bbbdcd983c81641e34fc
1222
- INFO environment: Released process lock: machine-action-f362ef49604eb8e907a8b026fa5bf97c
1223
- /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/batch_action.rb:134:in `join': No live threads left. Deadlock? (fatal)
1224
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/batch_action.rb:134:in `block in run'
1225
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/batch_action.rb:132:in `each'
1226
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/batch_action.rb:132:in `run'
1227
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/environment.rb:281:in `block (2 levels) in batch'
1228
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/environment.rb:276:in `tap'
1229
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/environment.rb:276:in `block in batch'
1230
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/environment.rb:275:in `synchronize'
1231
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/environment.rb:275:in `batch'
1232
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/plugins/commands/up/command.rb:58:in `execute'
1233
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/cli.rb:42:in `execute'
1234
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/lib/vagrant/environment.rb:302:in `cli'
1235
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bundler/gems/vagrant-36d6c430d230/bin/vagrant:174:in `<top (required)>'
1236
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bin/vagrant:23:in `load'
1237
- from /Users/legal/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/bin/vagrant:23:in `<main>'