Skip to content

Commit 3271676

Browse files
committed
modulesync 1.9.0
1 parent 42a293e commit 3271676

8 files changed

Lines changed: 61 additions & 12 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,15 @@ Thank you for contributing to this project!
66
- Our vulnerabilities reporting process is at https://voxpupuli.org/security/
77
88
-->
9+
#### Pull Request (PR) description
10+
<!--
11+
Replace this comment with a description of your pull request.
12+
-->
13+
14+
#### This Pull Request (PR) fixes the following issues
15+
<!--
16+
Replace this comment with the list of issues or n/a.
17+
Use format:
18+
Fixes #123
19+
Fixes #124
20+
-->

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '1.6.0'
1+
modulesync_config_version: '1.9.0'

.travis.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,32 @@ matrix:
1212
include:
1313
- rvm: 2.1.9
1414
bundler_args: --without system_tests development release
15-
env: PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=16
16-
- rvm: 2.4.2
15+
env: PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=12
16+
- rvm: 2.4.3
1717
bundler_args: --without system_tests development release
1818
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
19-
- rvm: 2.4.2
19+
- rvm: 2.5.0
20+
bundler_args: --without system_tests development release
21+
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
22+
- rvm: 2.4.3
2023
bundler_args: --without system_tests development release
2124
env: PUPPET_VERSION="~> 5.0" CHECK=rubocop
22-
- rvm: 2.4.2
25+
- rvm: 2.4.3
2326
bundler_args: --without system_tests development release
2427
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
25-
- rvm: 2.4.2
28+
- rvm: 2.4.3
2629
bundler_args: --without development release
2730
dist: trusty
2831
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7 CHECK=beaker
2932
services: docker
3033
sudo: required
31-
- rvm: 2.4.2
34+
- rvm: 2.4.3
3235
bundler_args: --without development release
3336
dist: trusty
3437
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/debian-8 CHECK=beaker
3538
services: docker
3639
sudo: required
37-
- rvm: 2.4.2
40+
- rvm: 2.4.3
3841
bundler_args: --without development release
3942
dist: trusty
4043
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04 CHECK=beaker

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def location_for(place, fake_version = nil)
1111
end
1212

1313
group :test do
14-
gem 'puppetlabs_spec_helper', '~> 2.5.0', :require => false
14+
gem 'puppetlabs_spec_helper', '~> 2.6.0', :require => false
1515
gem 'rspec-puppet', '~> 2.5', :require => false
1616
gem 'rspec-puppet-facts', :require => false
1717
gem 'rspec-puppet-utils', :require => false
@@ -57,7 +57,7 @@ group :system_tests do
5757
end
5858

5959
group :release do
60-
gem 'github_changelog_generator', :require => false if RUBY_VERSION >= '2.2.2'
60+
gem 'github_changelog_generator', :require => false, :git => 'https://github.com/skywinder/github-changelog-generator' if RUBY_VERSION >= '2.2.2'
6161
gem 'puppet-blacksmith', :require => false
6262
gem 'voxpupuli-release', :require => false, :git => 'https://github.com/voxpupuli/voxpupuli-release-gem'
6363
gem 'puppet-strings', '~> 1.0', :require => false

spec/acceptance/nodesets/docker/ubuntu-16.04.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ HOSTS:
1010
docker_preserve_image: true
1111
docker_cmd: '["/sbin/init"]'
1212
docker_image_commands:
13+
- 'systemctl mask getty@tty1.service getty-static.service'
1314
- 'apt-get install -y net-tools wget locales apt-transport-https'
1415
- 'locale-gen en_US.UTF-8'
16+
- 'echo LANG=en_US.UTF-8 > /etc/default/locale'
1517
CONFIG:
1618
trace_limit: 200
1719
masterless: true

spec/acceptance/nodesets/fedora-25-x64.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
# https://github.com/voxpupuli/modulesync
44
# https://github.com/voxpupuli/modulesync_config
55
#
6-
# platform is fedora 24 because there is no
7-
# puppet-agent for fedora 25 by 2016-12-30
86
HOSTS:
97
fedora-25-x64:
108
roles:
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# This file is managed via modulesync
3+
# https://github.com/voxpupuli/modulesync
4+
# https://github.com/voxpupuli/modulesync_config
5+
#
6+
HOSTS:
7+
fedora-26-x64:
8+
roles:
9+
- master
10+
platform: fedora-26-x86_64
11+
box: fedora/26-cloud-base
12+
hypervisor: vagrant
13+
CONFIG:
14+
type: aio
15+
...
16+
# vim: syntax=yaml
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
# This file is managed via modulesync
3+
# https://github.com/voxpupuli/modulesync
4+
# https://github.com/voxpupuli/modulesync_config
5+
#
6+
# platform is fedora 26 because there is no puppet-agent
7+
# for fedora 27 as of 2017-11-17
8+
HOSTS:
9+
fedora-27-x64:
10+
roles:
11+
- master
12+
platform: fedora-26-x86_64
13+
box: fedora/27-cloud-base
14+
hypervisor: vagrant
15+
CONFIG:
16+
type: aio
17+
...
18+
# vim: syntax=yaml

0 commit comments

Comments
 (0)