r10k 2.4.0 → 2.4.1
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.mkd +12 -0
- data/doc/dynamic-environments/configuration.mkd +2 -2
- data/lib/r10k/action/deploy/module.rb +1 -1
- data/lib/r10k/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 641a17c6593ee322ad99118d6cb4417bcf60dcee
|
|
4
|
+
data.tar.gz: 152e586e81392f906185e3bbf26c7ea4ef3d2e53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b841c5c9f5257fe8c737982b367cc047478d643c93a02158603dfd556b534010d7f323ade0c85e7726af9c8ee48d07d065ab68c856a399ce740c6eb6c325d6db
|
|
7
|
+
data.tar.gz: 64ca0499ceb9b51b6ab9c3b5695f8bf9d935e0b0737fdac186372e98cf463c53ec823d053f99aed3fcb7e9a63c5f5ed9376055f5f6164d5213cfa6a1a8e1e50b
|
data/CHANGELOG.mkd
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
2.4.1
|
|
5
|
+
-----
|
|
6
|
+
|
|
7
|
+
2016/08/11
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
(#634) Fix "undefined variable" error in "deploy module" action. (Special thanks
|
|
12
|
+
to Andreas Ntaflos (antaflos) for the fix.)
|
|
13
|
+
|
|
14
|
+
(#635) Reword some documentation around environment level purging.
|
|
15
|
+
|
|
4
16
|
2.4.0
|
|
5
17
|
-----
|
|
6
18
|
|
|
@@ -243,8 +243,8 @@ Enabling this purge level will cause r10k to load and parse the Puppetfile for
|
|
|
243
243
|
the environment even without the `--puppetfile` flag being set. However,
|
|
244
244
|
Puppetfile content will still only be deployed if the environment is new or
|
|
245
245
|
the `--puppetfile` flag is set. Additionally, no environment-level content
|
|
246
|
-
will be purged if
|
|
247
|
-
|
|
246
|
+
will be purged if any errors are encountered while evaluating the Puppetfile
|
|
247
|
+
or deploying its contents.
|
|
248
248
|
|
|
249
249
|
Note that the .r10k-deploy.json file is exempt from this purging.
|
|
250
250
|
|
|
@@ -37,7 +37,7 @@ module R10K
|
|
|
37
37
|
if @opts[:environment] && (@opts[:environment] != environment.dirname)
|
|
38
38
|
logger.debug1(_("Only updating modules in environment %{opt_env} skipping environment %{env_path}") % {opt_env: @opts[:environment], env_path: environment.path})
|
|
39
39
|
else
|
|
40
|
-
logger.debug1(_("Updating modules %{modules} in environment %{env_path}") % {modules: @argv.inspect, env_path:
|
|
40
|
+
logger.debug1(_("Updating modules %{modules} in environment %{env_path}") % {modules: @argv.inspect, env_path: environment.path})
|
|
41
41
|
yield
|
|
42
42
|
end
|
|
43
43
|
end
|
data/lib/r10k/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: r10k
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrien Thebo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colored
|
|
@@ -542,4 +542,3 @@ signing_key:
|
|
|
542
542
|
specification_version: 4
|
|
543
543
|
summary: Puppet environment and module deployment
|
|
544
544
|
test_files: []
|
|
545
|
-
has_rdoc:
|