beaker 4.4.0 → 4.5.0
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 +8 -2
- data/lib/beaker/host/unix/exec.rb +3 -3
- data/lib/beaker/version.rb +1 -1
- 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: ee72dc4a9270ecc4686e8902ca9e533eab400186
|
4
|
+
data.tar.gz: febd5939e242843ad5667c65b1bf320680a750e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c265600fa48c95ada4c537bad0040a9fd22f0fe0da80babc6122beb0a5ba6feca55ca93874ce3fb9d02e65806bccaf02b1ce746a387431ea34493d7aad92c976
|
7
|
+
data.tar.gz: 773529dbc0decdacb56cd9d06bc3d5d8804d52a41411fde534c843fba4a9b5e9b46c3b1c4b7fd4a1a89425506bfc2221e762b78288c2c1fee004ebb46c4fcad8
|
data/CHANGELOG.md
CHANGED
@@ -11,13 +11,19 @@ Tracking in this Changelog began for this project in version 3.25.0.
|
|
11
11
|
If you're looking for changes from before this, refer to the project's
|
12
12
|
git logs & PR history.
|
13
13
|
|
14
|
-
# [Unreleased](https://github.com/puppetlabs/beaker/compare/4.
|
14
|
+
# [Unreleased](https://github.com/puppetlabs/beaker/compare/4.5.0...master)
|
15
|
+
|
16
|
+
# [4.5.0](https://github.com/puppetlabs/beaker/compare/4.4.0...4.5.0) - 2019.01.23
|
17
|
+
|
18
|
+
### Changed
|
19
|
+
|
20
|
+
- Do not mirror profile.d on Debian (BKR-1559)
|
15
21
|
|
16
22
|
# [4.4.0](https://github.com/puppetlabs/beaker/compare/4.3.0...4.4.0) - 2019.01.09
|
17
23
|
|
18
24
|
### Added
|
19
25
|
|
20
|
-
- Return root considerations for appending on nexus devices (BKR-
|
26
|
+
- Return root considerations for appending on nexus devices (BKR-1562)
|
21
27
|
- Permit user environment on osx-10.14 (BKR-1534)
|
22
28
|
- Add host helpers for working with files (BKR-1560)
|
23
29
|
|
@@ -71,10 +71,10 @@ module Unix::Exec
|
|
71
71
|
end
|
72
72
|
|
73
73
|
# Converts the provided environment file to a new shell script in /etc/profile.d, then sources that file.
|
74
|
-
# This is for sles
|
74
|
+
# This is for sles based hosts.
|
75
75
|
# @param [String] env_file The ssh environment file to read from
|
76
76
|
def mirror_env_to_profile_d env_file
|
77
|
-
if self[:platform] =~ /sles
|
77
|
+
if self[:platform] =~ /sles-/
|
78
78
|
@logger.debug("mirroring environment to /etc/profile.d on sles platform host")
|
79
79
|
cur_env = exec(Beaker::Command.new("cat #{env_file}")).stdout
|
80
80
|
shell_env = ''
|
@@ -89,7 +89,7 @@ module Unix::Exec
|
|
89
89
|
exec(Beaker::Command.new("source #{self[:profile_d_env_file]}"))
|
90
90
|
else
|
91
91
|
#noop
|
92
|
-
@logger.debug("will not mirror environment to /etc/profile.d on non-sles
|
92
|
+
@logger.debug("will not mirror environment to /etc/profile.d on non-sles platform host")
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
data/lib/beaker/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|