puppet-magnum 3.0.3 → 3.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/VERSION +1 -1
- data/generator_files/vagrant/Vagrantfile.erb +4 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa1fdcc9deec4e9a81f7d9502b4dd2258665e4a7
|
|
4
|
+
data.tar.gz: 6bc65290682e66dd6f3021e303a3812d9a0280df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88cbb222aa467b8f7f5b80a7af6dc809d66168dbb4911b0c02531268f9865d327531b3ac2fe3a0e618c0478323c674b7e283f40e54cb6169005c51022a8bfff6
|
|
7
|
+
data.tar.gz: 29e9ac50dc5d0c129b77c79e89ea0d69eb41f1308843f45fbcae3958e982699318a5afb91b9128d7d7bd2044c9daa227d6ba60afcce6a5a94c4880ad1e545deb
|
data/CHANGELOG.md
ADDED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
puppet-magnum (3.0.
|
|
4
|
+
puppet-magnum (3.0.4)
|
|
5
5
|
bundler (>= 1.11.2)
|
|
6
6
|
colorize (>= 0.7.7)
|
|
7
7
|
puppet (~> 4.4.2)
|
|
@@ -21,7 +21,7 @@ GEM
|
|
|
21
21
|
diff-lcs (1.2.5)
|
|
22
22
|
facter (2.4.6)
|
|
23
23
|
CFPropertyList (~> 2.2.6)
|
|
24
|
-
hiera (3.
|
|
24
|
+
hiera (3.2.0)
|
|
25
25
|
json_pure
|
|
26
26
|
json_pure (1.8.3)
|
|
27
27
|
metaclass (0.0.4)
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.org/tehmaspc/puppet-magnum)
|
|
4
4
|
|
|
5
|
-
`puppet-magnum` is a tool for rapid, consistent, and best practice Puppet module development.
|
|
5
|
+
`puppet-magnum` is a tool for rapid, consistent, and best practice Puppet (4+) module development.
|
|
6
6
|
|
|
7
7
|
`puppet-magnum` helps the Puppet module developer create or maintain a Puppet module and test the module with tools like the following:
|
|
8
8
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.4
|
|
@@ -14,6 +14,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
|
14
14
|
# vbox.cpus = 2
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
+
if Vagrant.has_plugin?('vagrant-cachier')
|
|
18
|
+
config.cache.scope = :box
|
|
19
|
+
end
|
|
20
|
+
|
|
17
21
|
config.vm.provision :shell, :path => '.vagrant_puppet/init.sh'
|
|
18
22
|
|
|
19
23
|
config.vm.provision :puppet do |puppet|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppet-magnum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tehmasp Chaudhri
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sem_ver
|
|
@@ -191,6 +191,7 @@ files:
|
|
|
191
191
|
- ".rspec"
|
|
192
192
|
- ".ruby-version"
|
|
193
193
|
- ".travis.yml"
|
|
194
|
+
- CHANGELOG.md
|
|
194
195
|
- Gemfile
|
|
195
196
|
- Gemfile.lock
|
|
196
197
|
- LICENSE
|