vagrant-parallels 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +11 -0
- data/lib/vagrant-parallels/driver/prl_ctl.rb +1 -1
- data/lib/vagrant-parallels/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -106,6 +106,17 @@ It means that two public network adapters will be configured:
|
|
106
106
|
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).
|
107
107
|
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'.
|
108
108
|
|
109
|
+
## Provider Specific Configuration
|
110
|
+
|
111
|
+
Provider allows to define directives for `prlctl set` through `Vagrantfile` in same way as this done in VirtualBox provider.
|
112
|
+
|
113
|
+
#### Example:
|
114
|
+
```ruby
|
115
|
+
config.vm.provider :parallels do |parallels|
|
116
|
+
parallels.name = "HipHop VM"
|
117
|
+
parallels.customize ["set", :id, "--memsize", "1024"]
|
118
|
+
```
|
119
|
+
|
109
120
|
## Development
|
110
121
|
|
111
122
|
To work on the `vagrant-parallels` plugin, clone this repository out
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-parallels
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-11-
|
12
|
+
date: 2013-11-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -166,7 +166,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
166
166
|
version: '0'
|
167
167
|
segments:
|
168
168
|
- 0
|
169
|
-
hash:
|
169
|
+
hash: 3240941205170768918
|
170
170
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
171
|
none: false
|
172
172
|
requirements:
|