Skip to content

Commit 96ac7b2

Browse files
authored
Merge pull request #1050 from tylerjl/puppet-6
Puppet 6 Support
2 parents eba7497 + e7549b8 commit 96ac7b2

File tree

7 files changed

+18
-7
lines changed

7 files changed

+18
-7
lines changed

.fixtures.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ fixtures:
33
archive:
44
repo: puppet/archive
55
ref: 0.5.1
6+
augeas_core:
7+
repo: puppetlabs/augeas_core
8+
ref: 1.0.4
69
stdlib:
710
repo: puppetlabs/stdlib
811
ref: 4.13.1
@@ -19,8 +22,11 @@ fixtures:
1922
repo: puppetlabs/apt
2023
ref: 2.2.2
2124
zypprepo:
22-
repo: darin/zypprepo
23-
ref: 1.0.2
25+
repo: puppet/zypprepo
26+
ref: 2.2.2
27+
yumrepo_core:
28+
repo: puppetlabs/yumrepo_core
29+
ref: 1.0.3
2430
java_ks: puppetlabs/java_ks
2531
elastic_stack:
2632
repo: elastic/elastic_stack

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
- env:
5252
- TASK=intake
5353
- PUPPET_VERSION='~> 5.0'
54+
- env:
55+
- TASK=intake
56+
- PUPPET_VERSION='~> 6.0'
5457
- stage: acceptance
5558
env:
5659
- TASK=beaker:centos-6-x64:acceptance

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## x.x.x (Month Day, Year)
22

33
#### Features
4+
* Support for Puppet 6
45

56
#### Fixes
67

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ When using the repository management, the following module dependencies are requ
5656

5757
* General: [Elastic/elastic_stack](https://forge.puppet.com/elastic/elastic_stack)
5858
* Debian/Ubuntu: [Puppetlabs/apt](https://forge.puppetlabs.com/puppetlabs/apt)
59-
* OpenSuSE/SLES: [Darin/zypprepo](https://forge.puppetlabs.com/darin/zypprepo)
59+
* OpenSuSE/SLES: [puppet/zypprepo](https://forge.puppetlabs.com/puppet/zypprepo)
6060

6161
### Beginning with Elasticsearch
6262

metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
{
2121
"name": "puppetlabs/stdlib",
22-
"version_requirement": ">= 4.13.0 < 6.0.0"
22+
"version_requirement": ">= 4.13.0 < 7.0.0"
2323
}
2424
],
2525
"operatingsystem_support": [
@@ -80,7 +80,7 @@
8080
"requirements": [
8181
{
8282
"name": "puppet",
83-
"version_requirement": ">= 4.10.0 < 6.0.0"
83+
"version_requirement": ">= 4.10.0 < 7.0.0"
8484
}
8585
]
8686
}

spec/matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ OS:
1111
- ubuntu-server-1604-x64
1212
PUPPET_VERSION:
1313
- ""
14+
- "~> 6.0"
1415
- "~> 5.0"
1516
- "~> 4.10.0"
1617
TEST_TYPE:

spec/spec_helper_acceptance.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ class { 'elasticsearch':
231231
] + Beaker::DSL::InstallUtils::ModuleUtils::PUPPET_MODULE_INSTALL_IGNORE
232232

233233
hosts.each do |host|
234-
modules = %w[archive datacat java java_ks stdlib elastic_stack]
234+
modules = %w[archive augeas_core datacat java java_ks stdlib elastic_stack]
235235

236236
dist_module = {
237237
'Debian' => ['apt'],
238238
'Suse' => ['zypprepo'],
239-
'RedHat' => ['concat']
239+
'RedHat' => %w[concat yumrepo_core]
240240
}[f['os']['family']]
241241

242242
modules += dist_module unless dist_module.nil?

0 commit comments

Comments
 (0)