beaker-puppet 1.20.0 → 1.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +24 -0
- data/.github/workflows/test.yml +29 -0
- data/CHANGELOG.md +618 -0
- data/Gemfile +3 -1
- data/README.md +22 -7
- data/Rakefile +13 -0
- data/beaker-puppet.gemspec +1 -1
- data/lib/beaker-puppet/install_utils/foss_utils.rb +12 -5
- data/lib/beaker-puppet/install_utils/puppet_utils.rb +1 -3
- data/lib/beaker-puppet/version.rb +1 -1
- data/setup/git/000_EnvSetup.rb +1 -1
- data/spec/beaker-puppet/install_utils/foss_utils_spec.rb +7 -7
- data/spec/beaker-puppet/install_utils/puppet_utils_spec.rb +14 -0
- metadata +10 -9
- data/.travis.yml +0 -10
- data/HISTORY.md +0 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01e452fe598084e8ffeeb7040c9ff4f7da9599e5d5109a346266092ca72842d1
|
4
|
+
data.tar.gz: 57f331cedabc4cae9c645d77997ea1ebf45f09432fb150c52e300bbfaae7afa4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcadf1d4b92bf1fdd21ba5f9ef1de28a04b8fcca9286710a09b08b40d1a0c5264ff14d3d4756b90c0121d243726e66a3e01eef37b9ef327700226605ba3971ce
|
7
|
+
data.tar.gz: 8e010ce0c11ac41d7b71821520cffb1966a1603cb460438cb7b69cf3ea185053dbfa262bfb7573cb09fe592cf20cc1477b74d445f5609ccfae51993216600083
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
create:
|
5
|
+
ref_type: tag
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
release:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
if: github.repository == 'voxpupuli/beaker-puppet'
|
11
|
+
env:
|
12
|
+
BUNDLE_WITHOUT: release
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v2
|
15
|
+
- name: Install Ruby 2.7
|
16
|
+
uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
ruby-version: '2.7'
|
19
|
+
- name: Build gem
|
20
|
+
run: gem build *.gemspec
|
21
|
+
- name: Publish gem
|
22
|
+
run: gem push *.gem
|
23
|
+
env:
|
24
|
+
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
|
@@ -0,0 +1,29 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
- pull_request
|
5
|
+
- push
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
strategy:
|
11
|
+
fail-fast: false
|
12
|
+
matrix:
|
13
|
+
ruby:
|
14
|
+
- "2.4"
|
15
|
+
- "2.5"
|
16
|
+
- "2.6"
|
17
|
+
- "2.7"
|
18
|
+
env:
|
19
|
+
BUNDLE_WITHOUT: release
|
20
|
+
name: Ruby ${{ matrix.ruby }}
|
21
|
+
steps:
|
22
|
+
- uses: actions/checkout@v2
|
23
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
24
|
+
uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
ruby-version: ${{ matrix.ruby }}
|
27
|
+
bundler-cache: true
|
28
|
+
- name: Run tests
|
29
|
+
run: bundle exec rake test:spec
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,618 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
## [v1.21.0](https://github.com/voxpupuli/beaker-puppet/tree/v1.21.0) (2020-12-21)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.20.0...v1.21.0)
|
8
|
+
|
9
|
+
**Fixed bugs:**
|
10
|
+
|
11
|
+
- Fix Arch Linux support [\#154](https://github.com/voxpupuli/beaker-puppet/pull/154) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- \(\#151\) Remove useless 'PATH' string from system PATH [\#152](https://github.com/voxpupuli/beaker-puppet/pull/152) ([silug](https://github.com/silug))
|
16
|
+
- \(maint\) replace use of deprecated method `get_puppet_collection` [\#149](https://github.com/voxpupuli/beaker-puppet/pull/149) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
17
|
+
- \(maint\) Make latest the latest stable instead of nightly [\#147](https://github.com/voxpupuli/beaker-puppet/pull/147) ([GabrielNagy](https://github.com/GabrielNagy))
|
18
|
+
- \(maint\) Remove deprecated gem install flags [\#146](https://github.com/voxpupuli/beaker-puppet/pull/146) ([gimmyxd](https://github.com/gimmyxd))
|
19
|
+
- \(maint\) redhat-8-arm64 builds access check [\#145](https://github.com/voxpupuli/beaker-puppet/pull/145) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
20
|
+
|
21
|
+
## [1.20.0](https://github.com/voxpupuli/beaker-puppet/tree/1.20.0) (2020-09-10)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.19.2...1.20.0)
|
24
|
+
|
25
|
+
**Merged pull requests:**
|
26
|
+
|
27
|
+
- \(maint\) Remove puppet teams from CODEOWNERS file [\#143](https://github.com/voxpupuli/beaker-puppet/pull/143) ([lucywyman](https://github.com/lucywyman))
|
28
|
+
- Add .travis.yml [\#142](https://github.com/voxpupuli/beaker-puppet/pull/142) ([genebean](https://github.com/genebean))
|
29
|
+
- Add Dependabot to keep thins up to date [\#139](https://github.com/voxpupuli/beaker-puppet/pull/139) ([genebean](https://github.com/genebean))
|
30
|
+
- \(maint\) Update Windows test version.txt path [\#138](https://github.com/voxpupuli/beaker-puppet/pull/138) ([mihaibuzgau](https://github.com/mihaibuzgau))
|
31
|
+
|
32
|
+
## [1.19.2](https://github.com/voxpupuli/beaker-puppet/tree/1.19.2) (2020-05-21)
|
33
|
+
|
34
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.19.1...1.19.2)
|
35
|
+
|
36
|
+
**Merged pull requests:**
|
37
|
+
|
38
|
+
- \(BKR-1654\) ruby\_command should work on windows localhost [\#137](https://github.com/voxpupuli/beaker-puppet/pull/137) ([Filipovici-Andrei](https://github.com/Filipovici-Andrei))
|
39
|
+
|
40
|
+
## [1.19.1](https://github.com/voxpupuli/beaker-puppet/tree/1.19.1) (2020-05-07)
|
41
|
+
|
42
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.19.0...1.19.1)
|
43
|
+
|
44
|
+
**Merged pull requests:**
|
45
|
+
|
46
|
+
- \(BKR-1641\) Update Agent version defaults [\#134](https://github.com/voxpupuli/beaker-puppet/pull/134) ([sebastian-miclea](https://github.com/sebastian-miclea))
|
47
|
+
|
48
|
+
## [1.19.0](https://github.com/voxpupuli/beaker-puppet/tree/1.19.0) (2020-05-06)
|
49
|
+
|
50
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.15...1.19.0)
|
51
|
+
|
52
|
+
**Merged pull requests:**
|
53
|
+
|
54
|
+
- Bump puppet and rake version [\#136](https://github.com/voxpupuli/beaker-puppet/pull/136) ([highb](https://github.com/highb))
|
55
|
+
- \(maint\) Add extra escape chars in msi-log [\#135](https://github.com/voxpupuli/beaker-puppet/pull/135) ([donoghuc](https://github.com/donoghuc))
|
56
|
+
|
57
|
+
## [1.18.15](https://github.com/voxpupuli/beaker-puppet/tree/1.18.15) (2020-03-31)
|
58
|
+
|
59
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.14...1.18.15)
|
60
|
+
|
61
|
+
**Merged pull requests:**
|
62
|
+
|
63
|
+
- \(maint\) Enable Windows hosts to use the package\_proxy [\#133](https://github.com/voxpupuli/beaker-puppet/pull/133) ([markcassidy](https://github.com/markcassidy))
|
64
|
+
|
65
|
+
## [1.18.14](https://github.com/voxpupuli/beaker-puppet/tree/1.18.14) (2020-02-20)
|
66
|
+
|
67
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.13...1.18.14)
|
68
|
+
|
69
|
+
**Merged pull requests:**
|
70
|
+
|
71
|
+
- Update to remove issues with type/more commands [\#131](https://github.com/voxpupuli/beaker-puppet/pull/131) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
72
|
+
|
73
|
+
## [1.18.13](https://github.com/voxpupuli/beaker-puppet/tree/1.18.13) (2020-02-07)
|
74
|
+
|
75
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.12...1.18.13)
|
76
|
+
|
77
|
+
**Merged pull requests:**
|
78
|
+
|
79
|
+
- Revert "Merge pull request \#129 from trevor-vaughan/windows\_paths" [\#130](https://github.com/voxpupuli/beaker-puppet/pull/130) ([gimmyxd](https://github.com/gimmyxd))
|
80
|
+
|
81
|
+
## [1.18.12](https://github.com/voxpupuli/beaker-puppet/tree/1.18.12) (2020-02-06)
|
82
|
+
|
83
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.11...1.18.12)
|
84
|
+
|
85
|
+
**Merged pull requests:**
|
86
|
+
|
87
|
+
- Fix Windows Support [\#129](https://github.com/voxpupuli/beaker-puppet/pull/129) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
88
|
+
- Provide a useful message if possible ISP hijacking [\#128](https://github.com/voxpupuli/beaker-puppet/pull/128) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
89
|
+
|
90
|
+
## [1.18.11](https://github.com/voxpupuli/beaker-puppet/tree/1.18.11) (2019-12-10)
|
91
|
+
|
92
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.10...1.18.11)
|
93
|
+
|
94
|
+
**Merged pull requests:**
|
95
|
+
|
96
|
+
- \(maint\) Allow custom hypervisor settings [\#127](https://github.com/voxpupuli/beaker-puppet/pull/127) ([melissa](https://github.com/melissa))
|
97
|
+
|
98
|
+
## [1.18.10](https://github.com/voxpupuli/beaker-puppet/tree/1.18.10) (2019-11-26)
|
99
|
+
|
100
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.9...1.18.10)
|
101
|
+
|
102
|
+
**Merged pull requests:**
|
103
|
+
|
104
|
+
- \(RE-12690\) Be more explicit about when to gsub [\#126](https://github.com/voxpupuli/beaker-puppet/pull/126) ([mwaggett](https://github.com/mwaggett))
|
105
|
+
|
106
|
+
## [1.18.9](https://github.com/voxpupuli/beaker-puppet/tree/1.18.9) (2019-11-25)
|
107
|
+
|
108
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.8...1.18.9)
|
109
|
+
|
110
|
+
**Merged pull requests:**
|
111
|
+
|
112
|
+
- \(RE-12690\) Add debug output to `install_repo_configs_from_url` [\#125](https://github.com/voxpupuli/beaker-puppet/pull/125) ([mwaggett](https://github.com/mwaggett))
|
113
|
+
|
114
|
+
## [1.18.8](https://github.com/voxpupuli/beaker-puppet/tree/1.18.8) (2019-09-25)
|
115
|
+
|
116
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.7...1.18.8)
|
117
|
+
|
118
|
+
**Merged pull requests:**
|
119
|
+
|
120
|
+
- \(maint\) removed unused gem markdown [\#124](https://github.com/voxpupuli/beaker-puppet/pull/124) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
121
|
+
- \(maint\) fix ssl cleanup [\#123](https://github.com/voxpupuli/beaker-puppet/pull/123) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
122
|
+
- \(maint\) add CODEOWNERS [\#120](https://github.com/voxpupuli/beaker-puppet/pull/120) ([mihaibuzgau](https://github.com/mihaibuzgau))
|
123
|
+
|
124
|
+
## [1.18.7](https://github.com/voxpupuli/beaker-puppet/tree/1.18.7) (2019-07-18)
|
125
|
+
|
126
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.6...1.18.7)
|
127
|
+
|
128
|
+
**Merged pull requests:**
|
129
|
+
|
130
|
+
- \(maint\) Using skip\_test in a step was not doing what I expected [\#119](https://github.com/voxpupuli/beaker-puppet/pull/119) ([underscorgan](https://github.com/underscorgan))
|
131
|
+
|
132
|
+
## [1.18.6](https://github.com/voxpupuli/beaker-puppet/tree/1.18.6) (2019-07-15)
|
133
|
+
|
134
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.5...1.18.6)
|
135
|
+
|
136
|
+
**Merged pull requests:**
|
137
|
+
|
138
|
+
- \(maint\) Updates for rerunning tests on existing containers [\#117](https://github.com/voxpupuli/beaker-puppet/pull/117) ([underscorgan](https://github.com/underscorgan))
|
139
|
+
|
140
|
+
## [1.18.5](https://github.com/voxpupuli/beaker-puppet/tree/1.18.5) (2019-06-27)
|
141
|
+
|
142
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.4...1.18.5)
|
143
|
+
|
144
|
+
**Merged pull requests:**
|
145
|
+
|
146
|
+
- \(BKR-1600\) Default puppet settings to `main` section [\#118](https://github.com/voxpupuli/beaker-puppet/pull/118) ([joshcooper](https://github.com/joshcooper))
|
147
|
+
|
148
|
+
## [1.18.4](https://github.com/voxpupuli/beaker-puppet/tree/1.18.4) (2019-06-19)
|
149
|
+
|
150
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.3...1.18.4)
|
151
|
+
|
152
|
+
**Merged pull requests:**
|
153
|
+
|
154
|
+
- \(BKR-1598\) Set server hostname [\#116](https://github.com/voxpupuli/beaker-puppet/pull/116) ([joshcooper](https://github.com/joshcooper))
|
155
|
+
|
156
|
+
## [1.18.3](https://github.com/voxpupuli/beaker-puppet/tree/1.18.3) (2019-05-24)
|
157
|
+
|
158
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.2...1.18.3)
|
159
|
+
|
160
|
+
**Merged pull requests:**
|
161
|
+
|
162
|
+
- \(maint\) Mark dev repos as trusted [\#115](https://github.com/voxpupuli/beaker-puppet/pull/115) ([pcarlisle](https://github.com/pcarlisle))
|
163
|
+
|
164
|
+
## [1.18.2](https://github.com/voxpupuli/beaker-puppet/tree/1.18.2) (2019-05-20)
|
165
|
+
|
166
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.1...1.18.2)
|
167
|
+
|
168
|
+
**Merged pull requests:**
|
169
|
+
|
170
|
+
- \(BKR-1591\) install puppet from devbuilds on amazon [\#114](https://github.com/voxpupuli/beaker-puppet/pull/114) ([gimmyxd](https://github.com/gimmyxd))
|
171
|
+
|
172
|
+
## [1.18.1](https://github.com/voxpupuli/beaker-puppet/tree/1.18.1) (2019-05-16)
|
173
|
+
|
174
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.0...1.18.1)
|
175
|
+
|
176
|
+
**Merged pull requests:**
|
177
|
+
|
178
|
+
- \(BKR-1587\) Install non-latest builds on all hosts [\#112](https://github.com/voxpupuli/beaker-puppet/pull/112) ([joshcooper](https://github.com/joshcooper))
|
179
|
+
|
180
|
+
## [1.18.0](https://github.com/voxpupuli/beaker-puppet/tree/1.18.0) (2019-05-15)
|
181
|
+
|
182
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.17.0...1.18.0)
|
183
|
+
|
184
|
+
**Merged pull requests:**
|
185
|
+
|
186
|
+
- \(BKR-1590\) Support new yum and apt release locations [\#113](https://github.com/voxpupuli/beaker-puppet/pull/113) ([treydock](https://github.com/treydock))
|
187
|
+
- \(maint\) Restructure release repo url [\#110](https://github.com/voxpupuli/beaker-puppet/pull/110) ([melissa](https://github.com/melissa))
|
188
|
+
|
189
|
+
## [1.17.0](https://github.com/voxpupuli/beaker-puppet/tree/1.17.0) (2019-04-15)
|
190
|
+
|
191
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.16.0...1.17.0)
|
192
|
+
|
193
|
+
**Merged pull requests:**
|
194
|
+
|
195
|
+
- \(maint\) Bump version of puppet-agent to test against to 6.0.0 [\#109](https://github.com/voxpupuli/beaker-puppet/pull/109) ([melissa](https://github.com/melissa))
|
196
|
+
- \(maint\) Remove assumption that we have runtime on docker [\#108](https://github.com/voxpupuli/beaker-puppet/pull/108) ([melissa](https://github.com/melissa))
|
197
|
+
- \(maint\) Added debian 10 or higher to allow insecure repo [\#107](https://github.com/voxpupuli/beaker-puppet/pull/107) ([loopinu](https://github.com/loopinu))
|
198
|
+
- \(MAINT\) Fix test:acceptance:pkg [\#106](https://github.com/voxpupuli/beaker-puppet/pull/106) ([smcelmurry](https://github.com/smcelmurry))
|
199
|
+
- \(maint\) Exclude tmp directory on module installation [\#101](https://github.com/voxpupuli/beaker-puppet/pull/101) ([glennsarti](https://github.com/glennsarti))
|
200
|
+
- \(maint\) Enable acceptance testing with puppet-agent installed from ni… [\#98](https://github.com/voxpupuli/beaker-puppet/pull/98) ([melissa](https://github.com/melissa))
|
201
|
+
|
202
|
+
## [1.16.0](https://github.com/voxpupuli/beaker-puppet/tree/1.16.0) (2019-01-29)
|
203
|
+
|
204
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.15.1...1.16.0)
|
205
|
+
|
206
|
+
**Merged pull requests:**
|
207
|
+
|
208
|
+
- \(maint\) Add puppetserver package to puppet\_collection\_for [\#104](https://github.com/voxpupuli/beaker-puppet/pull/104) ([ekinanp](https://github.com/ekinanp))
|
209
|
+
- \(maint\) `agent` should be `host` [\#103](https://github.com/voxpupuli/beaker-puppet/pull/103) ([melissa](https://github.com/melissa))
|
210
|
+
|
211
|
+
## [1.15.1](https://github.com/voxpupuli/beaker-puppet/tree/1.15.1) (2019-01-28)
|
212
|
+
|
213
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.15.0...1.15.1)
|
214
|
+
|
215
|
+
**Merged pull requests:**
|
216
|
+
|
217
|
+
- \(maint\) Avoid mutating frozen string [\#102](https://github.com/voxpupuli/beaker-puppet/pull/102) ([donoghuc](https://github.com/donoghuc))
|
218
|
+
|
219
|
+
## [1.15.0](https://github.com/voxpupuli/beaker-puppet/tree/1.15.0) (2019-01-25)
|
220
|
+
|
221
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.14.0...1.15.0)
|
222
|
+
|
223
|
+
**Merged pull requests:**
|
224
|
+
|
225
|
+
- \(maint\) Centralize puppet\_collection\_for logic [\#100](https://github.com/voxpupuli/beaker-puppet/pull/100) ([ekinanp](https://github.com/ekinanp))
|
226
|
+
- \(maint\) return nil explicitly for agent/server version helpers [\#99](https://github.com/voxpupuli/beaker-puppet/pull/99) ([caseywilliams](https://github.com/caseywilliams))
|
227
|
+
- A few small puppet helper fixes [\#97](https://github.com/voxpupuli/beaker-puppet/pull/97) ([caseywilliams](https://github.com/caseywilliams))
|
228
|
+
- \(maint\) Fix incorrect constant reference, update a spec test description [\#96](https://github.com/voxpupuli/beaker-puppet/pull/96) ([caseywilliams](https://github.com/caseywilliams))
|
229
|
+
- \(BKR-1560\) Add install\_puppetserver\_on helper [\#95](https://github.com/voxpupuli/beaker-puppet/pull/95) ([caseywilliams](https://github.com/caseywilliams))
|
230
|
+
- \(BKR-1560\) Allow for installing puppet-agent from dev builds [\#93](https://github.com/voxpupuli/beaker-puppet/pull/93) ([caseywilliams](https://github.com/caseywilliams))
|
231
|
+
- \(maint\) Fix empty argument case in collection methods [\#92](https://github.com/voxpupuli/beaker-puppet/pull/92) ([caseywilliams](https://github.com/caseywilliams))
|
232
|
+
- \(maint\) Simplify missing SHA.yaml error message [\#91](https://github.com/voxpupuli/beaker-puppet/pull/91) ([caseywilliams](https://github.com/caseywilliams))
|
233
|
+
- \(BKR-1560\) Updates to support puppet\_agent module testing [\#89](https://github.com/voxpupuli/beaker-puppet/pull/89) ([caseywilliams](https://github.com/caseywilliams))
|
234
|
+
|
235
|
+
## [1.14.0](https://github.com/voxpupuli/beaker-puppet/tree/1.14.0) (2018-12-17)
|
236
|
+
|
237
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.13.0...1.14.0)
|
238
|
+
|
239
|
+
**Merged pull requests:**
|
240
|
+
|
241
|
+
- Autodetect the target module dir in copy\_module\_to [\#83](https://github.com/voxpupuli/beaker-puppet/pull/83) ([ekohl](https://github.com/ekohl))
|
242
|
+
|
243
|
+
## [1.13.0](https://github.com/voxpupuli/beaker-puppet/tree/1.13.0) (2018-12-13)
|
244
|
+
|
245
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.12.0...1.13.0)
|
246
|
+
|
247
|
+
**Implemented enhancements:**
|
248
|
+
|
249
|
+
- \(BKR-1523\) Add only-fails capability to beaker [\#76](https://github.com/voxpupuli/beaker-puppet/pull/76) ([speedofdark](https://github.com/speedofdark))
|
250
|
+
|
251
|
+
**Merged pull requests:**
|
252
|
+
|
253
|
+
- \(BKR-1558\) make sure we destroy hosts for ci:test:\* task execution [\#88](https://github.com/voxpupuli/beaker-puppet/pull/88) ([speedofdark](https://github.com/speedofdark))
|
254
|
+
- \(MAINT\) Use puppet.com URLs instead of puppetlabs.com [\#78](https://github.com/voxpupuli/beaker-puppet/pull/78) ([raphink](https://github.com/raphink))
|
255
|
+
|
256
|
+
## [1.12.0](https://github.com/voxpupuli/beaker-puppet/tree/1.12.0) (2018-11-30)
|
257
|
+
|
258
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.11.0...1.12.0)
|
259
|
+
|
260
|
+
**Merged pull requests:**
|
261
|
+
|
262
|
+
- \(PA-2336\) Manually import GPG keys for SLES versions \>= 11 [\#87](https://github.com/voxpupuli/beaker-puppet/pull/87) ([ScottGarman](https://github.com/ScottGarman))
|
263
|
+
|
264
|
+
## [1.11.0](https://github.com/voxpupuli/beaker-puppet/tree/1.11.0) (2018-11-28)
|
265
|
+
|
266
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.10.0...1.11.0)
|
267
|
+
|
268
|
+
**Merged pull requests:**
|
269
|
+
|
270
|
+
- Revert "\(maint\) Add AIX yum bootstrap to setup scripts" [\#86](https://github.com/voxpupuli/beaker-puppet/pull/86) ([geoffnichols](https://github.com/geoffnichols))
|
271
|
+
|
272
|
+
## [1.10.0](https://github.com/voxpupuli/beaker-puppet/tree/1.10.0) (2018-11-27)
|
273
|
+
|
274
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.9.0...1.10.0)
|
275
|
+
|
276
|
+
**Merged pull requests:**
|
277
|
+
|
278
|
+
- \(maint\) Set `server` in puppet.conf in ValidateSignCert [\#85](https://github.com/voxpupuli/beaker-puppet/pull/85) ([caseywilliams](https://github.com/caseywilliams))
|
279
|
+
|
280
|
+
## [1.9.0](https://github.com/voxpupuli/beaker-puppet/tree/1.9.0) (2018-11-26)
|
281
|
+
|
282
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.8.0...1.9.0)
|
283
|
+
|
284
|
+
**Merged pull requests:**
|
285
|
+
|
286
|
+
- \(maint\) Add AIX yum bootstrap to setup scripts [\#84](https://github.com/voxpupuli/beaker-puppet/pull/84) ([geoffnichols](https://github.com/geoffnichols))
|
287
|
+
- \(maint\) If iptables doesn't exist, don't fail [\#82](https://github.com/voxpupuli/beaker-puppet/pull/82) ([melissa](https://github.com/melissa))
|
288
|
+
- \(maint\) Add docker specifics to git testing [\#81](https://github.com/voxpupuli/beaker-puppet/pull/81) ([melissa](https://github.com/melissa))
|
289
|
+
|
290
|
+
## [1.8.0](https://github.com/voxpupuli/beaker-puppet/tree/1.8.0) (2018-11-05)
|
291
|
+
|
292
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.7.0...1.8.0)
|
293
|
+
|
294
|
+
**Implemented enhancements:**
|
295
|
+
|
296
|
+
- \(PUP-8305\) Consume the puppet-runtime archive [\#75](https://github.com/voxpupuli/beaker-puppet/pull/75) ([melissa](https://github.com/melissa))
|
297
|
+
|
298
|
+
**Merged pull requests:**
|
299
|
+
|
300
|
+
- \(maint\) Example variables in comments shouldn't be valid syntax so ru… [\#80](https://github.com/voxpupuli/beaker-puppet/pull/80) ([melissa](https://github.com/melissa))
|
301
|
+
|
302
|
+
## [1.7.0](https://github.com/voxpupuli/beaker-puppet/tree/1.7.0) (2018-10-25)
|
303
|
+
|
304
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.6.0...1.7.0)
|
305
|
+
|
306
|
+
**Merged pull requests:**
|
307
|
+
|
308
|
+
- \(PA-2183\) Quote fact name in fact\_on helper [\#79](https://github.com/voxpupuli/beaker-puppet/pull/79) ([ekinanp](https://github.com/ekinanp))
|
309
|
+
- Revert "\(PUP-8305\) Git testing should consume the runtime package" [\#74](https://github.com/voxpupuli/beaker-puppet/pull/74) ([kevpl](https://github.com/kevpl))
|
310
|
+
- \(maint\) Validate `fact_on` `name` parameter [\#73](https://github.com/voxpupuli/beaker-puppet/pull/73) ([alexjfisher](https://github.com/alexjfisher))
|
311
|
+
- \(PUP-9136\) Ensure state is preserved between runs [\#72](https://github.com/voxpupuli/beaker-puppet/pull/72) ([melissa](https://github.com/melissa))
|
312
|
+
- \(PUP-8305\) Git testing should consume the runtime package [\#52](https://github.com/voxpupuli/beaker-puppet/pull/52) ([melissa](https://github.com/melissa))
|
313
|
+
|
314
|
+
## [1.6.0](https://github.com/voxpupuli/beaker-puppet/tree/1.6.0) (2018-09-14)
|
315
|
+
|
316
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.5.0...1.6.0)
|
317
|
+
|
318
|
+
**Merged pull requests:**
|
319
|
+
|
320
|
+
- \(PE-25146\) Check for hostnames when puppetserver signing [\#70](https://github.com/voxpupuli/beaker-puppet/pull/70) ([jpartlow](https://github.com/jpartlow))
|
321
|
+
|
322
|
+
## [1.5.0](https://github.com/voxpupuli/beaker-puppet/tree/1.5.0) (2018-09-13)
|
323
|
+
|
324
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.4.0...1.5.0)
|
325
|
+
|
326
|
+
**Merged pull requests:**
|
327
|
+
|
328
|
+
- \(maint\) Get stdout of calls to `puppet --version` [\#69](https://github.com/voxpupuli/beaker-puppet/pull/69) ([Magisus](https://github.com/Magisus))
|
329
|
+
- \(MAINT\) Updates to support GCE and RHEL [\#27](https://github.com/voxpupuli/beaker-puppet/pull/27) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
330
|
+
|
331
|
+
## [1.4.0](https://github.com/voxpupuli/beaker-puppet/tree/1.4.0) (2018-09-13)
|
332
|
+
|
333
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.3.0...1.4.0)
|
334
|
+
|
335
|
+
**Merged pull requests:**
|
336
|
+
|
337
|
+
- \(MODULES-7793\) Avoid stat name conflicts by renaming stat -\> beaker\_stat [\#68](https://github.com/voxpupuli/beaker-puppet/pull/68) ([justinstoller](https://github.com/justinstoller))
|
338
|
+
- \(maint\) Merge up 0.x [\#67](https://github.com/voxpupuli/beaker-puppet/pull/67) ([justinstoller](https://github.com/justinstoller))
|
339
|
+
- \(BKR-1528\) Use `puppetserver ca` instead of `puppet cert` [\#66](https://github.com/voxpupuli/beaker-puppet/pull/66) ([Magisus](https://github.com/Magisus))
|
340
|
+
|
341
|
+
## [1.3.0](https://github.com/voxpupuli/beaker-puppet/tree/1.3.0) (2018-09-11)
|
342
|
+
|
343
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.2.0...1.3.0)
|
344
|
+
|
345
|
+
**Merged pull requests:**
|
346
|
+
|
347
|
+
- pass hiera\_config argument to puppet\_apply [\#63](https://github.com/voxpupuli/beaker-puppet/pull/63) ([lmayorga1980](https://github.com/lmayorga1980))
|
348
|
+
|
349
|
+
## [1.2.0](https://github.com/voxpupuli/beaker-puppet/tree/1.2.0) (2018-09-11)
|
350
|
+
|
351
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.1.0...1.2.0)
|
352
|
+
|
353
|
+
**Merged pull requests:**
|
354
|
+
|
355
|
+
- \(BKR-1445\) Update Windows agent paths for puppet6 [\#64](https://github.com/voxpupuli/beaker-puppet/pull/64) ([caseywilliams](https://github.com/caseywilliams))
|
356
|
+
- \(BKR-1510\) make fact helpers support structured facts [\#59](https://github.com/voxpupuli/beaker-puppet/pull/59) ([sevendials](https://github.com/sevendials))
|
357
|
+
- \(MAINT\) Adding some generic host helper utility methods [\#54](https://github.com/voxpupuli/beaker-puppet/pull/54) ([jsane](https://github.com/jsane))
|
358
|
+
|
359
|
+
## [1.1.0](https://github.com/voxpupuli/beaker-puppet/tree/1.1.0) (2018-08-13)
|
360
|
+
|
361
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.0.1...1.1.0)
|
362
|
+
|
363
|
+
**Merged pull requests:**
|
364
|
+
|
365
|
+
- PE-24898 Set puppet collection value associated with agent version [\#60](https://github.com/voxpupuli/beaker-puppet/pull/60) ([shaigy](https://github.com/shaigy))
|
366
|
+
|
367
|
+
## [1.0.1](https://github.com/voxpupuli/beaker-puppet/tree/1.0.1) (2018-08-10)
|
368
|
+
|
369
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.0.0...1.0.1)
|
370
|
+
|
371
|
+
**Merged pull requests:**
|
372
|
+
|
373
|
+
- \(BKR-1509\) Beaker 4.0 Compatibility [\#62](https://github.com/voxpupuli/beaker-puppet/pull/62) ([Dakta](https://github.com/Dakta))
|
374
|
+
|
375
|
+
## [1.0.0](https://github.com/voxpupuli/beaker-puppet/tree/1.0.0) (2018-08-06)
|
376
|
+
|
377
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.17.1...1.0.0)
|
378
|
+
|
379
|
+
**Merged pull requests:**
|
380
|
+
|
381
|
+
- Revert "Revert "\(BKR-496\) Move create\_tmpdir\_on from beaker"" [\#58](https://github.com/voxpupuli/beaker-puppet/pull/58) ([Dakta](https://github.com/Dakta))
|
382
|
+
- \(BKR-1500\) Dependency Cleanup [\#55](https://github.com/voxpupuli/beaker-puppet/pull/55) ([Dakta](https://github.com/Dakta))
|
383
|
+
|
384
|
+
## [0.17.1](https://github.com/voxpupuli/beaker-puppet/tree/0.17.1) (2018-07-27)
|
385
|
+
|
386
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.17.0...0.17.1)
|
387
|
+
|
388
|
+
**Merged pull requests:**
|
389
|
+
|
390
|
+
- Revert "\(BKR-496\) Move create\_tmpdir\_on from beaker" [\#57](https://github.com/voxpupuli/beaker-puppet/pull/57) ([kevpl](https://github.com/kevpl))
|
391
|
+
|
392
|
+
## [0.17.0](https://github.com/voxpupuli/beaker-puppet/tree/0.17.0) (2018-07-26)
|
393
|
+
|
394
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.16.0...0.17.0)
|
395
|
+
|
396
|
+
**Merged pull requests:**
|
397
|
+
|
398
|
+
- \(BKR-496\) Move create\_tmpdir\_on from beaker [\#56](https://github.com/voxpupuli/beaker-puppet/pull/56) ([Dakta](https://github.com/Dakta))
|
399
|
+
|
400
|
+
## [0.16.0](https://github.com/voxpupuli/beaker-puppet/tree/0.16.0) (2018-07-05)
|
401
|
+
|
402
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.15.2...0.16.0)
|
403
|
+
|
404
|
+
**Merged pull requests:**
|
405
|
+
|
406
|
+
- \(BKR-1484\) Packaging platform overrides for puppet5 install utils [\#53](https://github.com/voxpupuli/beaker-puppet/pull/53) ([caseywilliams](https://github.com/caseywilliams))
|
407
|
+
- \(MAINT\) pin fakefs to \< 0.14.0 for ruby 2.2 [\#51](https://github.com/voxpupuli/beaker-puppet/pull/51) ([kevpl](https://github.com/kevpl))
|
408
|
+
|
409
|
+
## [0.15.2](https://github.com/voxpupuli/beaker-puppet/tree/0.15.2) (2018-05-07)
|
410
|
+
|
411
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.15.1...0.15.2)
|
412
|
+
|
413
|
+
**Merged pull requests:**
|
414
|
+
|
415
|
+
- BKR-1465 - install\_puppet\_on -"opts" defaults "options" [\#50](https://github.com/voxpupuli/beaker-puppet/pull/50) ([gunzl1ng3r](https://github.com/gunzl1ng3r))
|
416
|
+
- \(RE-10734\) Use nightlies.puppet.com for nightly collections [\#47](https://github.com/voxpupuli/beaker-puppet/pull/47) ([hunner](https://github.com/hunner))
|
417
|
+
|
418
|
+
## [0.15.1](https://github.com/voxpupuli/beaker-puppet/tree/0.15.1) (2018-05-04)
|
419
|
+
|
420
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.15.0...0.15.1)
|
421
|
+
|
422
|
+
**Merged pull requests:**
|
423
|
+
|
424
|
+
- \(BKR-1462\) Another Ubuntu 18.04 check to allow insecure repo use [\#49](https://github.com/voxpupuli/beaker-puppet/pull/49) ([ScottGarman](https://github.com/ScottGarman))
|
425
|
+
|
426
|
+
## [0.15.0](https://github.com/voxpupuli/beaker-puppet/tree/0.15.0) (2018-05-03)
|
427
|
+
|
428
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.14.0...0.15.0)
|
429
|
+
|
430
|
+
**Merged pull requests:**
|
431
|
+
|
432
|
+
- \(BKR-1462\) Allow unsigned apt repositories for Ubuntu 18.04 hosts [\#46](https://github.com/voxpupuli/beaker-puppet/pull/46) ([ScottGarman](https://github.com/ScottGarman))
|
433
|
+
|
434
|
+
## [0.14.0](https://github.com/voxpupuli/beaker-puppet/tree/0.14.0) (2018-05-01)
|
435
|
+
|
436
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.6...0.14.0)
|
437
|
+
|
438
|
+
**Merged pull requests:**
|
439
|
+
|
440
|
+
- \(CPR-570\) Import the gpg signing key on sles 11 [\#45](https://github.com/voxpupuli/beaker-puppet/pull/45) ([melissa](https://github.com/melissa))
|
441
|
+
|
442
|
+
## [0.13.6](https://github.com/voxpupuli/beaker-puppet/tree/0.13.6) (2018-04-26)
|
443
|
+
|
444
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.5...0.13.6)
|
445
|
+
|
446
|
+
**Merged pull requests:**
|
447
|
+
|
448
|
+
- Use puppet-agent specific helper when installing the MSI [\#43](https://github.com/voxpupuli/beaker-puppet/pull/43) ([joshcooper](https://github.com/joshcooper))
|
449
|
+
|
450
|
+
## [0.13.5](https://github.com/voxpupuli/beaker-puppet/tree/0.13.5) (2018-04-25)
|
451
|
+
|
452
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.4...0.13.5)
|
453
|
+
|
454
|
+
**Merged pull requests:**
|
455
|
+
|
456
|
+
- \(maint\) Fix failing puppet5\_spec test due to changes in pr \#39 [\#42](https://github.com/voxpupuli/beaker-puppet/pull/42) ([mchllweeks](https://github.com/mchllweeks))
|
457
|
+
- Use --module-repository for a custom forge [\#40](https://github.com/voxpupuli/beaker-puppet/pull/40) ([ekohl](https://github.com/ekohl))
|
458
|
+
|
459
|
+
## [0.13.4](https://github.com/voxpupuli/beaker-puppet/tree/0.13.4) (2018-04-23)
|
460
|
+
|
461
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.3...0.13.4)
|
462
|
+
|
463
|
+
**Merged pull requests:**
|
464
|
+
|
465
|
+
- \(BKR-1438\) Do not use `puppet master` [\#41](https://github.com/voxpupuli/beaker-puppet/pull/41) ([pcarlisle](https://github.com/pcarlisle))
|
466
|
+
|
467
|
+
## [0.13.3](https://github.com/voxpupuli/beaker-puppet/tree/0.13.3) (2018-04-16)
|
468
|
+
|
469
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.2...0.13.3)
|
470
|
+
|
471
|
+
**Merged pull requests:**
|
472
|
+
|
473
|
+
- Maint/master/small changes [\#39](https://github.com/voxpupuli/beaker-puppet/pull/39) ([melissa](https://github.com/melissa))
|
474
|
+
- \(maint\) Bring additional changes from puppet-agent acceptance [\#36](https://github.com/voxpupuli/beaker-puppet/pull/36) ([melissa](https://github.com/melissa))
|
475
|
+
|
476
|
+
## [0.13.2](https://github.com/voxpupuli/beaker-puppet/tree/0.13.2) (2018-04-11)
|
477
|
+
|
478
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.1...0.13.2)
|
479
|
+
|
480
|
+
**Merged pull requests:**
|
481
|
+
|
482
|
+
- \(BKR-1453\) Ensure no agent lock after stopping puppet service [\#38](https://github.com/voxpupuli/beaker-puppet/pull/38) ([cthorn42](https://github.com/cthorn42))
|
483
|
+
- \(maint\) Add information about additional ENV vars [\#37](https://github.com/voxpupuli/beaker-puppet/pull/37) ([melissa](https://github.com/melissa))
|
484
|
+
|
485
|
+
## [0.13.1](https://github.com/voxpupuli/beaker-puppet/tree/0.13.1) (2018-04-09)
|
486
|
+
|
487
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.0...0.13.1)
|
488
|
+
|
489
|
+
**Merged pull requests:**
|
490
|
+
|
491
|
+
- \(BKR-1443\) Ensure we do not destroy hosts if specified [\#35](https://github.com/voxpupuli/beaker-puppet/pull/35) ([melissa](https://github.com/melissa))
|
492
|
+
|
493
|
+
## [0.13.0](https://github.com/voxpupuli/beaker-puppet/tree/0.13.0) (2018-03-30)
|
494
|
+
|
495
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.12.0...0.13.0)
|
496
|
+
|
497
|
+
**Merged pull requests:**
|
498
|
+
|
499
|
+
- Maint/master/skip master tests [\#34](https://github.com/voxpupuli/beaker-puppet/pull/34) ([melissa](https://github.com/melissa))
|
500
|
+
|
501
|
+
## [0.12.0](https://github.com/voxpupuli/beaker-puppet/tree/0.12.0) (2018-03-26)
|
502
|
+
|
503
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.11.1...0.12.0)
|
504
|
+
|
505
|
+
**Merged pull requests:**
|
506
|
+
|
507
|
+
- \(maint\) Add release information to the readme [\#33](https://github.com/voxpupuli/beaker-puppet/pull/33) ([melissa](https://github.com/melissa))
|
508
|
+
- \(PA-1915\) Test components against nightly puppetserver [\#30](https://github.com/voxpupuli/beaker-puppet/pull/30) ([melissa](https://github.com/melissa))
|
509
|
+
|
510
|
+
## [0.11.1](https://github.com/voxpupuli/beaker-puppet/tree/0.11.1) (2018-03-26)
|
511
|
+
|
512
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.11.0...0.11.1)
|
513
|
+
|
514
|
+
**Merged pull requests:**
|
515
|
+
|
516
|
+
- \(maint\) Pre suite paths must be relative [\#32](https://github.com/voxpupuli/beaker-puppet/pull/32) ([melissa](https://github.com/melissa))
|
517
|
+
- \(maint\) Remove references to 'ci:test:quick' [\#29](https://github.com/voxpupuli/beaker-puppet/pull/29) ([melissa](https://github.com/melissa))
|
518
|
+
|
519
|
+
## [0.11.0](https://github.com/voxpupuli/beaker-puppet/tree/0.11.0) (2018-03-20)
|
520
|
+
|
521
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.10.0...0.11.0)
|
522
|
+
|
523
|
+
**Merged pull requests:**
|
524
|
+
|
525
|
+
- \(BKR-1342\) Import ci rake tasks and install utils [\#26](https://github.com/voxpupuli/beaker-puppet/pull/26) ([melissa](https://github.com/melissa))
|
526
|
+
|
527
|
+
## [0.10.0](https://github.com/voxpupuli/beaker-puppet/tree/0.10.0) (2018-01-11)
|
528
|
+
|
529
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.9.0...0.10.0)
|
530
|
+
|
531
|
+
**Merged pull requests:**
|
532
|
+
|
533
|
+
- \(BKR-1385\) Install rpm packages on aix [\#25](https://github.com/voxpupuli/beaker-puppet/pull/25) ([melissa](https://github.com/melissa))
|
534
|
+
- \(maint\) Refactor puppet5 install logic [\#24](https://github.com/voxpupuli/beaker-puppet/pull/24) ([joshcooper](https://github.com/joshcooper))
|
535
|
+
- \(BKR-1343\) Install as an MSI on Windows [\#23](https://github.com/voxpupuli/beaker-puppet/pull/23) ([joshcooper](https://github.com/joshcooper))
|
536
|
+
- \(maint\) Remove unnecessary logger information [\#22](https://github.com/voxpupuli/beaker-puppet/pull/22) ([melissa](https://github.com/melissa))
|
537
|
+
|
538
|
+
## [0.9.0](https://github.com/voxpupuli/beaker-puppet/tree/0.9.0) (2018-01-04)
|
539
|
+
|
540
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.8.0...0.9.0)
|
541
|
+
|
542
|
+
**Merged pull requests:**
|
543
|
+
|
544
|
+
- \(maint\) Add beaker-abs to Gemfile [\#21](https://github.com/voxpupuli/beaker-puppet/pull/21) ([smcelmurry](https://github.com/smcelmurry))
|
545
|
+
|
546
|
+
## [0.8.0](https://github.com/voxpupuli/beaker-puppet/tree/0.8.0) (2017-10-13)
|
547
|
+
|
548
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.7.0...0.8.0)
|
549
|
+
|
550
|
+
**Merged pull requests:**
|
551
|
+
|
552
|
+
- \(MAINT\) add contributing guide to README [\#19](https://github.com/voxpupuli/beaker-puppet/pull/19) ([kevpl](https://github.com/kevpl))
|
553
|
+
- \(maint\) Update beaker to support pupppet5 style installation [\#18](https://github.com/voxpupuli/beaker-puppet/pull/18) ([melissa](https://github.com/melissa))
|
554
|
+
|
555
|
+
## [0.7.0](https://github.com/voxpupuli/beaker-puppet/tree/0.7.0) (2017-09-15)
|
556
|
+
|
557
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.6.0...0.7.0)
|
558
|
+
|
559
|
+
**Merged pull requests:**
|
560
|
+
|
561
|
+
- \(maint\) Allow user to pass in host target [\#16](https://github.com/voxpupuli/beaker-puppet/pull/16) ([melissa](https://github.com/melissa))
|
562
|
+
|
563
|
+
## [0.6.0](https://github.com/voxpupuli/beaker-puppet/tree/0.6.0) (2017-08-21)
|
564
|
+
|
565
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.5.0...0.6.0)
|
566
|
+
|
567
|
+
**Merged pull requests:**
|
568
|
+
|
569
|
+
- \(BKR-1118\) add puppet5 install method [\#6](https://github.com/voxpupuli/beaker-puppet/pull/6) ([kevpl](https://github.com/kevpl))
|
570
|
+
|
571
|
+
## [0.5.0](https://github.com/voxpupuli/beaker-puppet/tree/0.5.0) (2017-08-18)
|
572
|
+
|
573
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.4.0...0.5.0)
|
574
|
+
|
575
|
+
**Merged pull requests:**
|
576
|
+
|
577
|
+
- \(BKR-1185\) Use Oga instead of Nokogiri [\#15](https://github.com/voxpupuli/beaker-puppet/pull/15) ([rishijavia](https://github.com/rishijavia))
|
578
|
+
- \(MAINT\) fix windows spec failures [\#14](https://github.com/voxpupuli/beaker-puppet/pull/14) ([tvpartytonight](https://github.com/tvpartytonight))
|
579
|
+
- \(MAINT\) remove `dev_builds_repos` mentions [\#8](https://github.com/voxpupuli/beaker-puppet/pull/8) ([kevpl](https://github.com/kevpl))
|
580
|
+
|
581
|
+
## [0.4.0](https://github.com/voxpupuli/beaker-puppet/tree/0.4.0) (2017-07-26)
|
582
|
+
|
583
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.3.0...0.4.0)
|
584
|
+
|
585
|
+
**Merged pull requests:**
|
586
|
+
|
587
|
+
- \(BKR-1164\) Add ubuntu to the platform list in remove\_puppet\_on [\#11](https://github.com/voxpupuli/beaker-puppet/pull/11) ([ScottGarman](https://github.com/ScottGarman))
|
588
|
+
|
589
|
+
## [0.3.0](https://github.com/voxpupuli/beaker-puppet/tree/0.3.0) (2017-07-17)
|
590
|
+
|
591
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.2.0...0.3.0)
|
592
|
+
|
593
|
+
**Merged pull requests:**
|
594
|
+
|
595
|
+
- \(BKR-1159\) Reset opts in install\_puppet\_agent\_dev\_repo\_on [\#10](https://github.com/voxpupuli/beaker-puppet/pull/10) ([johnduarte](https://github.com/johnduarte))
|
596
|
+
|
597
|
+
## [0.2.0](https://github.com/voxpupuli/beaker-puppet/tree/0.2.0) (2017-06-28)
|
598
|
+
|
599
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.1.0...0.2.0)
|
600
|
+
|
601
|
+
**Merged pull requests:**
|
602
|
+
|
603
|
+
- \(BKR-1147\) Fail to pkg install on ec2 for dev-repo [\#7](https://github.com/voxpupuli/beaker-puppet/pull/7) ([johnduarte](https://github.com/johnduarte))
|
604
|
+
- \(BKR-895\) add missing install\_utils tests [\#5](https://github.com/voxpupuli/beaker-puppet/pull/5) ([kevpl](https://github.com/kevpl))
|
605
|
+
|
606
|
+
## [0.1.0](https://github.com/voxpupuli/beaker-puppet/tree/0.1.0) (2017-06-16)
|
607
|
+
|
608
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/3878c13311bf5ddcda043f5c23cb1354614a997a...0.1.0)
|
609
|
+
|
610
|
+
**Merged pull requests:**
|
611
|
+
|
612
|
+
- \(MAINT\) fix coverage env-var name [\#4](https://github.com/voxpupuli/beaker-puppet/pull/4) ([kevpl](https://github.com/kevpl))
|
613
|
+
- \(MAINT\) improve README description [\#3](https://github.com/voxpupuli/beaker-puppet/pull/3) ([kevpl](https://github.com/kevpl))
|
614
|
+
- \(MAINT\) fix DSL inclusion [\#2](https://github.com/voxpupuli/beaker-puppet/pull/2) ([kevpl](https://github.com/kevpl))
|
615
|
+
|
616
|
+
|
617
|
+
|
618
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile
CHANGED
@@ -2,7 +2,9 @@ source ENV['GEM_SOURCE'] || "https://rubygems.org"
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
|
5
|
+
group :release do
|
6
|
+
gem 'github_changelog_generator', :require => false, :git => 'https://github.com/voxpupuli/github-changelog-generator', :branch => 'voxpupuli_essential_fixes'
|
7
|
+
end
|
6
8
|
|
7
9
|
def location_for(place, fake_version = nil)
|
8
10
|
if place =~ /^(git:[^#]*)#(.*)/
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ This includes all helper & installer methods.
|
|
5
5
|
|
6
6
|
It might not be up to that state yet, but that's the goal for this library. If
|
7
7
|
you see anything puppet-specific that you'd like to pull into this library out
|
8
|
-
of beaker, please do, we would love any help that you'd like to provide.
|
8
|
+
of beaker, please do, we would love any help that you'd like to provide.
|
9
9
|
|
10
10
|
# How Do I Use This?
|
11
11
|
|
@@ -80,10 +80,25 @@ Please refer to puppetlabs/beaker's [contributing](https://github.com/puppetlabs
|
|
80
80
|
|
81
81
|
# Releasing
|
82
82
|
|
83
|
-
|
84
|
-
lives on internal infrastructure.
|
83
|
+
* Install the required gems to generate the changelog:
|
85
84
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
85
|
+
```
|
86
|
+
bundle install --path .vendor/ --jobs=$(nproc) --with release
|
87
|
+
```
|
88
|
+
|
89
|
+
* Update the gem version in `lib/beaker-puppet/version.rb`
|
90
|
+
|
91
|
+
* Export a GitHub access token:
|
92
|
+
|
93
|
+
```
|
94
|
+
export CHANGELOG_GITHUB_TOKEN=...
|
95
|
+
```
|
96
|
+
|
97
|
+
* Generate the changelog
|
98
|
+
|
99
|
+
```
|
100
|
+
bundle exec rake changelog
|
101
|
+
```
|
102
|
+
|
103
|
+
* Create a PR with the changes
|
104
|
+
* After the merge, create a git tag and push it, GitHub Actions will do the release
|
data/Rakefile
CHANGED
@@ -297,3 +297,16 @@ namespace :docs do
|
|
297
297
|
end
|
298
298
|
end
|
299
299
|
end
|
300
|
+
|
301
|
+
begin
|
302
|
+
require 'github_changelog_generator/task'
|
303
|
+
|
304
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
305
|
+
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
|
306
|
+
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog}
|
307
|
+
config.user = 'voxpupuli'
|
308
|
+
config.project = 'beaker-puppet'
|
309
|
+
config.future_release = "v#{Gem::Specification.load("#{config.project}.gemspec").version}"
|
310
|
+
end
|
311
|
+
rescue LoadError
|
312
|
+
end
|
data/beaker-puppet.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
# Testing dependencies
|
21
21
|
s.add_development_dependency 'rspec', '~> 3.0'
|
22
22
|
s.add_development_dependency 'rspec-its'
|
23
|
-
s.add_development_dependency 'fakefs', '
|
23
|
+
s.add_development_dependency 'fakefs', '>= 0.6', '< 2.0'
|
24
24
|
s.add_development_dependency 'rake', '~> 13.0'
|
25
25
|
s.add_development_dependency 'simplecov'
|
26
26
|
s.add_development_dependency 'pry', '~> 0.10'
|
@@ -72,6 +72,9 @@ module Beaker
|
|
72
72
|
def dev_builds_accessible_on?(host, url = FOSS_DEFAULT_DOWNLOAD_URLS[:dev_builds_url])
|
73
73
|
return true if host.host_hash[:template] =~ /^amazon-*/ && host.hostname =~ /.puppet.net$/
|
74
74
|
|
75
|
+
# redhat-8-arm64 is provided from amazon
|
76
|
+
return true if host.host_hash[:template] == 'redhat-8-arm64' && host.hostname =~ /.puppet.net$/
|
77
|
+
|
75
78
|
result = on(host, %(curl -fI "#{url}"), accept_all_exit_codes: true)
|
76
79
|
return result.exit_code.zero?
|
77
80
|
end
|
@@ -416,6 +419,8 @@ module Beaker
|
|
416
419
|
install_puppet_agent_from_msi_on(host, opts)
|
417
420
|
when /osx/
|
418
421
|
install_puppet_agent_from_dmg_on(host, opts)
|
422
|
+
when /archlinux/
|
423
|
+
install_puppet_from_pacman_on(host, opts)
|
419
424
|
else
|
420
425
|
if opts[:default_action] == 'gem_install'
|
421
426
|
opts[:version] = opts[:puppet_gem_version]
|
@@ -949,7 +954,7 @@ module Beaker
|
|
949
954
|
on host, "echo '#{path_with_gem}' >> ~/.bashrc"
|
950
955
|
end
|
951
956
|
|
952
|
-
gemflags = '--no-
|
957
|
+
gemflags = '--no-document --no-format-executable'
|
953
958
|
|
954
959
|
if opts[:facter_version]
|
955
960
|
on host, "gem install facter -v'#{opts[:facter_version]}' #{gemflags}"
|
@@ -1355,7 +1360,7 @@ module Beaker
|
|
1355
1360
|
opts[:download_url] = "#{opts[:pe_promoted_builds_url]}/puppet-agent/#{ pe_ver }/#{ opts[:puppet_agent_version] }/repos"
|
1356
1361
|
opts[:copy_base_local] ||= File.join('tmp', 'repo_configs')
|
1357
1362
|
opts[:copy_dir_external] ||= host.external_copy_base
|
1358
|
-
opts[:puppet_collection] ||=
|
1363
|
+
opts[:puppet_collection] ||= puppet_collection_for(:puppet_agent, opts[:puppet_agent_version])
|
1359
1364
|
add_role(host, 'aio') #we are installing agent, so we want aio role
|
1360
1365
|
release_path = opts[:download_url]
|
1361
1366
|
variant, version, arch, codename = host['platform'].to_array
|
@@ -1432,7 +1437,7 @@ module Beaker
|
|
1432
1437
|
def install_puppetserver_on(host, opts = {})
|
1433
1438
|
opts = sanitize_opts(opts)
|
1434
1439
|
|
1435
|
-
# Default to installing latest
|
1440
|
+
# Default to installing latest
|
1436
1441
|
opts[:version] ||= 'latest'
|
1437
1442
|
|
1438
1443
|
# If inside the Puppet VPN, install from development builds.
|
@@ -1453,8 +1458,10 @@ module Beaker
|
|
1453
1458
|
# here would be incorrect - that refers to FOSS puppet 3 only).
|
1454
1459
|
host[:type] = :aio
|
1455
1460
|
|
1456
|
-
if opts[:version] == 'latest'
|
1457
|
-
|
1461
|
+
if opts[:version] == 'latest'
|
1462
|
+
if opts[:nightlies]
|
1463
|
+
release_stream += '-nightly' unless release_stream.end_with? "-nightly"
|
1464
|
+
end
|
1458
1465
|
|
1459
1466
|
# Since we have modified the collection, we don't want to pass `latest`
|
1460
1467
|
# in to `install_package` as the version. That'll fail. Instead, if
|
@@ -56,7 +56,6 @@ module Beaker
|
|
56
56
|
block_on hosts do | host |
|
57
57
|
puppet_path = construct_puppet_path(host)
|
58
58
|
host.add_env_var('PATH', puppet_path)
|
59
|
-
host.add_env_var('PATH', 'PATH') # don't destroy the path!
|
60
59
|
end
|
61
60
|
end
|
62
61
|
|
@@ -68,7 +67,6 @@ module Beaker
|
|
68
67
|
block_on hosts do | host |
|
69
68
|
puppet_path = construct_puppet_path(host)
|
70
69
|
host.delete_env_var('PATH', puppet_path)
|
71
|
-
host.add_env_var('PATH', 'PATH') # don't destroy the path!
|
72
70
|
end
|
73
71
|
end
|
74
72
|
|
@@ -152,7 +150,7 @@ module Beaker
|
|
152
150
|
result = on(host, 'puppetserver --version', accept_all_exit_codes: true)
|
153
151
|
if result.exit_code.zero?
|
154
152
|
matched = result.stdout.strip.scan(%r{\d+\.\d+\.\d+})
|
155
|
-
return matched.
|
153
|
+
return matched.first
|
156
154
|
end
|
157
155
|
nil
|
158
156
|
end
|
data/setup/git/000_EnvSetup.rb
CHANGED
@@ -1406,7 +1406,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
1406
1406
|
it 'sets correct file paths when agent version is set to latest' do
|
1407
1407
|
host['platform'] = platform
|
1408
1408
|
agentversion = 'latest'
|
1409
|
-
collection = '
|
1409
|
+
collection = 'puppet'
|
1410
1410
|
opts = { :puppet_agent_version => "#{agentversion}" , :pe_promoted_builds_url => "#{downloadurl}" }
|
1411
1411
|
|
1412
1412
|
expect(subject).to receive(:fetch_http_file).once.with(
|
@@ -1424,10 +1424,10 @@ describe ClassMixedWithDSLInstallUtils do
|
|
1424
1424
|
subject.install_puppet_agent_pe_promoted_repo_on( host, opts )
|
1425
1425
|
end
|
1426
1426
|
|
1427
|
-
it 'sets correct file paths for agent version
|
1427
|
+
it 'sets correct file paths for agent version 1.x.x' do
|
1428
1428
|
host['platform'] = platform
|
1429
|
-
agentversion = '
|
1430
|
-
collection = '
|
1429
|
+
agentversion = '1.x.x'
|
1430
|
+
collection = 'pc1'
|
1431
1431
|
opts = { :puppet_agent_version => "#{agentversion}" , :pe_promoted_builds_url => "#{downloadurl}"}
|
1432
1432
|
|
1433
1433
|
expect(subject).to receive(:fetch_http_file).once.with(
|
@@ -1467,7 +1467,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
1467
1467
|
|
1468
1468
|
it 'sets correct file paths for agent version > 5.99' do
|
1469
1469
|
host['platform'] = platform
|
1470
|
-
agentversion = '6.0'
|
1470
|
+
agentversion = '6.0.0'
|
1471
1471
|
collection = 'puppet6'
|
1472
1472
|
opts = { :puppet_agent_version => "#{agentversion}" , :pe_promoted_builds_url => "#{downloadurl}"}
|
1473
1473
|
|
@@ -1492,8 +1492,8 @@ describe ClassMixedWithDSLInstallUtils do
|
|
1492
1492
|
let(:host) { make_host('master', platform: 'el-7-x86_64') }
|
1493
1493
|
|
1494
1494
|
context 'with default arguments' do
|
1495
|
-
it "installs the latest puppetserver from the default 'puppet
|
1496
|
-
expect(subject).to receive(:install_puppetlabs_release_repo_on).with(host, 'puppet
|
1495
|
+
it "installs the latest puppetserver from the default 'puppet' release stream" do
|
1496
|
+
expect(subject).to receive(:install_puppetlabs_release_repo_on).with(host, 'puppet', include(release_yum_repo_url: "http://yum.puppet.com"))
|
1497
1497
|
expect(subject).to receive(:install_package).with(host, 'puppetserver', nil)
|
1498
1498
|
subject.install_puppetserver_on(host)
|
1499
1499
|
end
|
@@ -137,6 +137,20 @@ describe ClassMixedWithDSLInstallUtils do
|
|
137
137
|
|
138
138
|
end
|
139
139
|
|
140
|
+
describe '#puppetserver_version_on' do
|
141
|
+
it 'returns the tag on a released version' do
|
142
|
+
result = object_double(Beaker::Result.new({}, 'puppetserver --version'), :stdout => "puppetserver version: 6.13.0", :exit_code => 0)
|
143
|
+
expect(subject).to receive(:on).with(hosts.first, 'puppetserver --version', accept_all_exit_codes: true).and_return(result)
|
144
|
+
expect(subject.puppetserver_version_on(hosts.first)).to eq('6.13.0')
|
145
|
+
end
|
146
|
+
|
147
|
+
it 'returns the tag on a nightly version' do
|
148
|
+
result = object_double(Beaker::Result.new({}, 'puppetserver --version'), :stdout => "puppetserver version: 7.0.0.SNAPSHOT.2020.10.14T0512", :exit_code => 0)
|
149
|
+
expect(subject).to receive(:on).with(hosts.first, 'puppetserver --version', accept_all_exit_codes: true).and_return(result)
|
150
|
+
expect(subject.puppetserver_version_on(hosts.first)).to eq('7.0.0')
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
140
154
|
describe '#puppet_collection_for' do
|
141
155
|
it 'raises an error when given an invalid package' do
|
142
156
|
expect { subject.puppet_collection_for(:foo, '5.5.4') }.to raise_error
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -42,22 +42,22 @@ dependencies:
|
|
42
42
|
name: fakefs
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0.6'
|
48
48
|
- - "<"
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
50
|
+
version: '2.0'
|
51
51
|
type: :development
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
|
-
- - "
|
55
|
+
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: '0.6'
|
58
58
|
- - "<"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
60
|
+
version: '2.0'
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: rake
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -207,12 +207,13 @@ extensions: []
|
|
207
207
|
extra_rdoc_files: []
|
208
208
|
files:
|
209
209
|
- ".github/dependabot.yml"
|
210
|
+
- ".github/workflows/release.yml"
|
211
|
+
- ".github/workflows/test.yml"
|
210
212
|
- ".gitignore"
|
211
213
|
- ".simplecov"
|
212
|
-
-
|
214
|
+
- CHANGELOG.md
|
213
215
|
- CODEOWNERS
|
214
216
|
- Gemfile
|
215
|
-
- HISTORY.md
|
216
217
|
- LICENSE
|
217
218
|
- README.md
|
218
219
|
- Rakefile
|
@@ -309,7 +310,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
309
310
|
- !ruby/object:Gem::Version
|
310
311
|
version: '0'
|
311
312
|
requirements: []
|
312
|
-
rubygems_version: 3.
|
313
|
+
rubygems_version: 3.1.4
|
313
314
|
signing_key:
|
314
315
|
specification_version: 4
|
315
316
|
summary: Beaker's Puppet DSL Extension Helpers!
|
data/.travis.yml
DELETED
data/HISTORY.md
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
# worker - History
|
2
|
-
## Tags
|
3
|
-
* [LATEST - 28 Jun, 2017 (63cbd942)](#LATEST)
|
4
|
-
* [0.1.0 - 16 Jun, 2017 (e9be23b0)](#0.1.0)
|
5
|
-
|
6
|
-
## Details
|
7
|
-
### <a name = "LATEST">LATEST - 28 Jun, 2017 (63cbd942)
|
8
|
-
|
9
|
-
* (GEM) update beaker-puppet version to 0.2.0 (63cbd942)
|
10
|
-
|
11
|
-
* Merge pull request #7 from johnduarte/issues/master/bkr-1147/fail-to-pkg-install-on-ec2-el (dd8d640f)
|
12
|
-
|
13
|
-
|
14
|
-
```
|
15
|
-
Merge pull request #7 from johnduarte/issues/master/bkr-1147/fail-to-pkg-install-on-ec2-el
|
16
|
-
|
17
|
-
(BKR-1147) Fail to pkg install on ec2 for dev-repo
|
18
|
-
```
|
19
|
-
* (BKR-1147) Fail to pkg install on ec2 for dev-repo (89909fa7)
|
20
|
-
|
21
|
-
|
22
|
-
```
|
23
|
-
(BKR-1147) Fail to pkg install on ec2 for dev-repo
|
24
|
-
|
25
|
-
This commit modifies the `install_puppet_agent_dev_repo_on` method
|
26
|
-
to install the puppet-agent package if the host is on ec2 and el.
|
27
|
-
This is done because the ec2 instance does not have access to the
|
28
|
-
default dev repo.
|
29
|
-
```
|
30
|
-
* Merge pull request #5 from kevpl/bkr895_installutils_tests (e54d7fd2)
|
31
|
-
|
32
|
-
|
33
|
-
```
|
34
|
-
Merge pull request #5 from kevpl/bkr895_installutils_tests
|
35
|
-
|
36
|
-
(BKR-895) add missing install_utils tests
|
37
|
-
```
|
38
|
-
* (BKR-895) add missing install_utils tests (d6f243ed)
|
39
|
-
|
40
|
-
### <a name = "0.1.0">0.1.0 - 16 Jun, 2017 (e9be23b0)
|
41
|
-
|
42
|
-
* Initial release.
|