Skip to content

Commit 1e98668

Browse files
committed
Merge pull request redhat-openstack#225 from mhaskel/test
merge 3.3.x into master
2 parents 4fd5093 + 948d053 commit 1e98668

4 files changed

Lines changed: 22 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
##2014-11-04 - Supported Release 3.3.0
2+
###Summary
3+
4+
This release adds support for SLES 12.
5+
6+
####Features
7+
- Added support for SLES 12
8+
19
##2014-10-02 - Supported Release 3.2.1
210
###Summary
311

README.markdown

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -218,19 +218,19 @@ status as a virtual machine.
218218

219219
##Limitations
220220

221-
This module has been built on and tested against Puppet 2.7 and higher.
221+
This module has been built on and tested against Puppet 3.
222222

223223
The module has been tested on:
224224

225-
* RedHat Enterprise Linux 5/6
225+
* RedHat Enterprise Linux 5/6/7
226+
* CentOS 5/6/7
227+
* Oracle Enterprise Linux 5/6/7
228+
* Scientific Linux 5/6/7
229+
* SLES 10SP4/11SP1/12
226230
* Debian 6/7
227-
* CentOS 5/6
228-
* Ubuntu 12.04
229-
* Gentoo
230-
* Arch Linux
231-
* FreeBSD
231+
* Ubuntu 10.04/12.04/14.04
232232
* Solaris 11
233-
* AIX 5.3, 6.1, 7.1
233+
* AIX 5.3/6.1/7.1
234234

235235
Testing on other platforms has been light and cannot be guaranteed.
236236

metadata.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-ntp",
3-
"version": "3.2.1",
3+
"version": "3.3.0",
44
"author": "Puppet Labs",
55
"summary": "NTP Module",
66
"license": "Apache Version 2.0",
@@ -43,7 +43,9 @@
4343
{
4444
"operatingsystem": "SLES",
4545
"operatingsystemrelease": [
46-
"11 SP1"
46+
"10 SP4",
47+
"11 SP1",
48+
"12"
4749
]
4850
},
4951
{

spec/spec_helper_acceptance.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
on host, "/bin/echo '' > #{host['hieraconf']}"
1919
end
2020
on host, "mkdir -p #{host['distmoduledir']}"
21-
if host['platform'] =~ /sles-12/
21+
if host['platform'] =~ /sles-12/i || host['platform'] =~ /solaris-11/i
2222
apply_manifest_on(host, 'package{"git":}')
2323
on host, 'git clone -b 4.3.x https://github.com/puppetlabs/puppetlabs-stdlib /etc/puppetlabs/puppet/modules/stdlib'
2424
else
25-
on host, puppet_module_install('puppetlabs/stdlib')
25+
on host, puppet('module install puppetlabs-stdlib'), {:acceptable_exit_codes => [0, 1]}
2626
end
2727
end
2828
end
@@ -38,7 +38,6 @@
3838
c.before :suite do
3939
hosts.each do |host|
4040
on host, "mkdir -p #{host['distmoduledir']}/ntp"
41-
on host, puppet('module install puppetlabs-stdlib')
4241
%w(lib manifests templates metadata.json).each do |file|
4342
scp_to host, "#{proj_root}/#{file}", "#{host['distmoduledir']}/ntp"
4443
end

0 commit comments

Comments
 (0)