vagrant-puppetconf 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.rvmrc +1 -0
- data/README.md +3 -1
- data/lib/vagrant-puppetconf/middleware.rb +1 -1
- data/lib/vagrant-puppetconf/version.rb +1 -1
- metadata +3 -2
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm use ruby-1.9.3@vagrant-puppetconf --create
|
data/README.md
CHANGED
@@ -40,10 +40,12 @@ Example Vagrant file:
|
|
40
40
|
|
41
41
|
Additional commands:
|
42
42
|
|
43
|
-
Updates
|
43
|
+
Updates any puppet.conf config on the fly.
|
44
|
+
|
44
45
|
vagrant puppetconf -k main/environment -v test
|
45
46
|
|
46
47
|
Update puppet.conf environment config on the fly.
|
48
|
+
|
47
49
|
vagrant puppetenv test
|
48
50
|
|
49
51
|
## Contributing
|
@@ -29,7 +29,7 @@ module VagrantPuppetconf
|
|
29
29
|
|
30
30
|
def install_augeas
|
31
31
|
@env[:ui].warn I18n.t('vagrant.plugins.puppetconf.middleware.install_augeas')
|
32
|
-
@env[:vm].channel.sudo("apt-get install augeas-tools")
|
32
|
+
@env[:vm].channel.sudo("apt-get -y --force-yes install augeas-tools")
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-puppetconf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
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: 2012-
|
12
|
+
date: 2012-07-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: vagrant
|
@@ -34,6 +34,7 @@ executables: []
|
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
+
- .rvmrc
|
37
38
|
- Gemfile
|
38
39
|
- LICENSE
|
39
40
|
- README.md
|