hammer_cli_foreman 0.17.1 → 0.17.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.
- checksums.yaml +4 -4
- data/doc/release_notes.md +4 -0
- data/lib/hammer_cli_foreman/combination.rb +2 -0
- data/lib/hammer_cli_foreman/command_extensions.rb +3 -0
- data/lib/hammer_cli_foreman/host.rb +2 -0
- data/lib/hammer_cli_foreman/location.rb +4 -0
- data/lib/hammer_cli_foreman/puppet_class.rb +4 -3
- data/lib/hammer_cli_foreman/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cfafe507d907c2ab1aed91af69e697a96b3ebf53a986c95e08eb983d428d5c3
|
|
4
|
+
data.tar.gz: 66077cbc504c823917ce78e519f5483d6bb3dc64ca879926105ce9074e36a740
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cf5631ead2692b824488dfe9583fd6e08f39a10a51c52bef283ad073e8ce985566de787262704bee7811f84e1c57e8b44bfaddf1aa1247684c9db3c1b0fc16d
|
|
7
|
+
data.tar.gz: 4e708bb0f305e0affc530a9418030952c8bbea70183ab50500f336d7c4f9f355eef7dde9e877a16c7f333c8dfb44b9c6fc664d9eab57c9a232beaedb11e65d0f
|
data/doc/release_notes.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
Release notes
|
|
2
2
|
=============
|
|
3
|
+
### 0.17.2 (2019-08-13)
|
|
4
|
+
* Update environments options for puppet context ([#27323](http://projects.theforeman.org/issues/27323))
|
|
5
|
+
* Consistent puppet environment naming in hammer ([#23204](http://projects.theforeman.org/issues/23204))
|
|
6
|
+
|
|
3
7
|
### 0.17.1 (2019-07-10)
|
|
4
8
|
* Consistent puppet environment naming in hammer ([#23204](http://projects.theforeman.org/issues/23204))
|
|
5
9
|
* Create hostgroup with puppet classes ([#24717](http://projects.theforeman.org/issues/24717))
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
require 'hammer_cli_foreman/command_extensions/puppet_environment'
|
|
2
|
+
require 'hammer_cli_foreman/command_extensions/puppet_environment'
|
|
3
|
+
require 'hammer_cli_foreman/command_extensions/puppet_environments'
|
|
4
|
+
require 'hammer_cli_foreman/command_extensions/option_sources'
|
|
2
5
|
require 'hammer_cli_foreman/command_extensions/puppet_environments'
|
|
3
6
|
require 'hammer_cli_foreman/command_extensions/option_sources'
|
|
@@ -56,6 +56,8 @@ module HammerCLIForeman
|
|
|
56
56
|
failure_message _("Could not create the location")
|
|
57
57
|
|
|
58
58
|
build_options
|
|
59
|
+
|
|
60
|
+
extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironments.new)
|
|
59
61
|
end
|
|
60
62
|
|
|
61
63
|
|
|
@@ -68,6 +70,8 @@ module HammerCLIForeman
|
|
|
68
70
|
failure_message _("Could not update the location")
|
|
69
71
|
|
|
70
72
|
build_options
|
|
73
|
+
|
|
74
|
+
extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironments.new)
|
|
71
75
|
end
|
|
72
76
|
|
|
73
77
|
|
|
@@ -26,6 +26,8 @@ module HammerCLIForeman
|
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
build_options
|
|
29
|
+
|
|
30
|
+
extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironment.new)
|
|
29
31
|
end
|
|
30
32
|
|
|
31
33
|
|
|
@@ -44,6 +46,8 @@ module HammerCLIForeman
|
|
|
44
46
|
end
|
|
45
47
|
|
|
46
48
|
build_options
|
|
49
|
+
|
|
50
|
+
extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironment.new)
|
|
47
51
|
end
|
|
48
52
|
|
|
49
53
|
|
|
@@ -70,6 +74,3 @@ module HammerCLIForeman
|
|
|
70
74
|
end
|
|
71
75
|
|
|
72
76
|
end
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hammer_cli_foreman
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.17.
|
|
4
|
+
version: 0.17.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tomáš Strachota
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-08-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: hammer_cli
|
|
@@ -541,7 +541,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
541
541
|
version: '0'
|
|
542
542
|
requirements: []
|
|
543
543
|
rubyforge_project:
|
|
544
|
-
rubygems_version: 2.7.
|
|
544
|
+
rubygems_version: 2.7.10
|
|
545
545
|
signing_key:
|
|
546
546
|
specification_version: 4
|
|
547
547
|
summary: Foreman commands for Hammer
|