forked from camptocamp/puppet-accounts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
* upstream/master: (22 commits) Release 1.9.3 Update with modulesync Release 1.9.2 Remove now unsupported "pe" requirement Release version 1.9.1 Update with modulesync Release 1.9.0 Remove Puppet 3 compatibility in metadata.json Force managing local users. Remove Puppet 3 tests fully Modulesync: remove Puppet 3 tests Update with modulesync Update with modulesync modulesync Fix ParseError test Release version 1.8.1 Update with modulesync Speed up acceptance tests on centos-5 delete .travis.yml.swp Update with modulesync ...
- Loading branch information
Showing
24 changed files
with
264 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--fail-on-warnings | ||
--relative | ||
--no-80chars | ||
--no-140chars | ||
--no-documentation | ||
--no-class_inherits_from_params_class-check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
--- | ||
.travis.yml: | ||
forge_password: "cigHpMryWewlnZKALuS6zQUDpqKSJs7eg0BYpH2mwHRHjJlIm299njXDKN/8eyfVadn/bXa4LSGoxtPQywuNp0nWfZUpY5j7ay+78drMAGoFxvKjthBt34ds6B2Pq9VvJvxA6xikQxk7sgJy0MNj1wv/kLZs7WvnAeokhIbwRGQ=" | ||
extras: | ||
- rvm: 1.9.3 | ||
env: PUPPET_GEM_VERSION="~> 3.5.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
HOSTS: | ||
centos-5-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: el-5-x86_64 | ||
hypervisor : docker | ||
image: tianon/centos:5.10 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'yum install -y crontabs tar wget which' | ||
- 'sed -i -e "/mingetty/d" /etc/inittab' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
HOSTS: | ||
centos-6-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: el-6-x86_64 | ||
hypervisor : docker | ||
image: centos:6 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'rm -rf /var/run/network/*' | ||
- 'yum install -y crontabs tar wget' | ||
- 'rm /etc/init/tty.conf' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
HOSTS: | ||
centos-7-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: el-7-x86_64 | ||
hypervisor : docker | ||
image: centos:7 | ||
docker_preserve_image: true | ||
docker_cmd: '["/usr/sbin/init"]' | ||
docker_image_commands: | ||
- 'yum install -y crontabs tar wget iproute' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
HOSTS: | ||
debian-6-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: debian-6-amd64 | ||
hypervisor : docker | ||
image: debian/eol:squeeze | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y cron locales-all net-tools wget' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
HOSTS: | ||
debian-7-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: debian-7-amd64 | ||
hypervisor : docker | ||
image: debian:7 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y cron locales-all net-tools wget' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
HOSTS: | ||
debian-8-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: debian-8-amd64 | ||
hypervisor : docker | ||
image: debian:8 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y cron locales-all net-tools wget' | ||
- 'rm -f /usr/sbin/policy-rc.d' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
HOSTS: | ||
debian-9-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: debian-9-amd64 | ||
hypervisor : docker | ||
image: debian:9 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y cron locales-all net-tools systemd-sysv wget' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
HOSTS: | ||
ubuntu-1204-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: ubuntu-12.04-amd64 | ||
hypervisor : docker | ||
image: ubuntu:12.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y net-tools wget' | ||
- 'locale-gen en_US.UTF-8' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
HOSTS: | ||
ubuntu-1404-x64: | ||
default_apply_opts: | ||
order: random | ||
strict_variables: | ||
platform: ubuntu-14.04-amd64 | ||
hypervisor : docker | ||
image: ubuntu:14.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'rm /usr/sbin/policy-rc.d' | ||
- 'rm /sbin/initctl; dpkg-divert --rename --remove /sbin/initctl' | ||
- 'apt-get install -y net-tools wget' | ||
- 'locale-gen en_US.UTF-8' | ||
CONFIG: | ||
type: aio | ||
log_level: debug |
Oops, something went wrong.