beaker-puppet_install_helper 0.7.0 → 0.7.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.md +5 -0
- data/beaker-puppet_install_helper.gemspec +1 -1
- data/lib/beaker/puppet_install_helper.rb +0 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8b427a76ae0d653988c28f41405dcd28c741028
|
|
4
|
+
data.tar.gz: 0d158cf962f91151a189f576b5f7b49020b03aa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 615e51ff6f078ee5b122dcf810b6e800f79bc08358f19928bfed8be0f59e5dae2f39d55fbdbeac256965bb0bb83b70b0857182c95d19ccbeb57d9ffeb6445285
|
|
7
|
+
data.tar.gz: 738c89b9f4d17d4f357447a710b8134917dde093ddff4027723e9d89d6751a5641887fa39fa679cdcc4beba80b1e58145b3794d49a6547c822157f189719b985
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.7.1]
|
|
8
|
+
### Fixed
|
|
9
|
+
- Reverted adding the bin folder to $PATH on non-windows
|
|
10
|
+
|
|
7
11
|
## [0.7.0]
|
|
8
12
|
### Changed
|
|
9
13
|
- MODULES-4653 `run_puppet_install_helper_on` now installs puppetserver on master role when using the `foss` install type.
|
|
@@ -39,6 +43,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
39
43
|
### Changed
|
|
40
44
|
- Add solaris for installing CA certs as well.
|
|
41
45
|
|
|
46
|
+
[0.7.1]: https://github.com/puppetlabs/beaker-puppet_install_helper/compare/0.7.0...0.7.1
|
|
42
47
|
[0.7.0]: https://github.com/puppetlabs/beaker-puppet_install_helper/compare/0.6.0...0.7.0
|
|
43
48
|
[0.6.0]: https://github.com/puppetlabs/beaker-puppet_install_helper/compare/0.5.0...0.6.0
|
|
44
49
|
[0.5.0]: https://github.com/puppetlabs/beaker-puppet_install_helper/compare/0.4.4...0.5.0
|
|
@@ -108,12 +108,6 @@ module Beaker::PuppetInstallHelper
|
|
|
108
108
|
# nodeset type == 'aio', but we don't want to depend on that.
|
|
109
109
|
add_aio_defaults_on(hosts)
|
|
110
110
|
add_puppet_paths_on(hosts)
|
|
111
|
-
# beaker does not add the puppet bin folder to $PATH. this adds it for puppet 4
|
|
112
|
-
Array(hosts).each do |host|
|
|
113
|
-
if fact_on(host, 'osfamily') != 'windows'
|
|
114
|
-
on host, "echo 'export PATH=/opt/puppetlabs/puppet/bin:${PATH}' >> /root/.bashrc"
|
|
115
|
-
end
|
|
116
|
-
end
|
|
117
111
|
else
|
|
118
112
|
raise ArgumentError, "Type must be pe, foss, or agent; got #{type.inspect}"
|
|
119
113
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-puppet_install_helper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|