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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 53eff8a2f49c2dc6d030c7c6032225500ba53bc5
4
- data.tar.gz: 0a3ea2358e01984b5d63dc92c2594fca0aee0209
3
+ metadata.gz: ee72dc4a9270ecc4686e8902ca9e533eab400186
4
+ data.tar.gz: febd5939e242843ad5667c65b1bf320680a750e2
5
5
  SHA512:
6
- metadata.gz: 05ec5313fa43c0ebccad6f5c3957edd6e185c5f8e1f3468b760201b3ab8b2db6a683fbff91cd346cab9f85ccac2fea985ae932c03f1ea7d89ac4ce2173811d44
7
- data.tar.gz: 4758fd7751f6ad3e5af51f07b74d093d1ddd445f030d82b7147b0f4b2f728b9bd1e77082c608af0608c555ae512583d1c1f5cdda6e1011d9de59484822d561d0
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.4.0...master)
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-1526)
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 and debian based hosts.
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-|debian/
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/debian platform host")
92
+ @logger.debug("will not mirror environment to /etc/profile.d on non-sles platform host")
93
93
  end
94
94
  end
95
95
 
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '4.4.0'
3
+ STRING = '4.5.0'
4
4
  end
5
5
  end
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.0
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-10 00:00:00.000000000 Z
11
+ date: 2019-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec