commit
a278e5063c
9 changed files with 52 additions and 12 deletions
|
@ -113,10 +113,6 @@ else
|
||||||
printf '%s\n' "$WARNMSG" > "fragments.concat"
|
printf '%s\n' "$WARNMSG" > "fragments.concat"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "x${ENSURE_NEWLINE}" != "x" ]; then
|
|
||||||
find fragments/ -type f -follow -print0 | xargs -0 -I '{}' sh -c 'if [ -n "$(tail -c 1 < {} )" ]; then echo >> {} ; fi'
|
|
||||||
fi
|
|
||||||
|
|
||||||
# find all the files in the fragments directory, sort them numerically and concat to fragments.concat in the working dir
|
# find all the files in the fragments directory, sort them numerically and concat to fragments.concat in the working dir
|
||||||
IFS_BACKUP=$IFS
|
IFS_BACKUP=$IFS
|
||||||
IFS='
|
IFS='
|
||||||
|
@ -124,6 +120,10 @@ IFS='
|
||||||
for fragfile in `find fragments/ -type f -follow | LC_ALL=C sort ${SORTARG}`
|
for fragfile in `find fragments/ -type f -follow | LC_ALL=C sort ${SORTARG}`
|
||||||
do
|
do
|
||||||
cat $fragfile >> "fragments.concat"
|
cat $fragfile >> "fragments.concat"
|
||||||
|
# Handle newlines.
|
||||||
|
if [ "x${ENSURE_NEWLINE}" != "x" ]; then
|
||||||
|
echo >> "fragments.concat"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
IFS=$IFS_BACKUP
|
IFS=$IFS_BACKUP
|
||||||
|
|
||||||
|
|
19
spec/acceptance/nodesets/aix-71-vcloud.yml
Normal file
19
spec/acceptance/nodesets/aix-71-vcloud.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
HOSTS:
|
||||||
|
pe-aix-71-acceptance:
|
||||||
|
roles:
|
||||||
|
- master
|
||||||
|
- dashboard
|
||||||
|
- database
|
||||||
|
- agent
|
||||||
|
- default
|
||||||
|
platform: aix-7.1-power
|
||||||
|
hypervisor: aix
|
||||||
|
ip: pe-aix-71-acceptance.delivery.puppetlabs.net
|
||||||
|
CONFIG:
|
||||||
|
type: pe
|
||||||
|
nfs_server: NONE
|
||||||
|
consoleport: 443
|
||||||
|
datastore: instance0
|
||||||
|
folder: Delivery/Quality Assurance/Enterprise/Dynamic
|
||||||
|
resourcepool: delivery/Quality Assurance/Enterprise/Dynamic
|
||||||
|
pooling_api: http://vcloud.delivery.puppetlabs.net/
|
|
@ -7,4 +7,4 @@ HOSTS:
|
||||||
box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
|
||||||
hypervisor : vagrant
|
hypervisor : vagrant
|
||||||
CONFIG:
|
CONFIG:
|
||||||
type: git
|
type: foss
|
||||||
|
|
11
spec/acceptance/nodesets/debian-73-x64.yml
Normal file
11
spec/acceptance/nodesets/debian-73-x64.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
HOSTS:
|
||||||
|
debian-73-x64.localhost:
|
||||||
|
roles:
|
||||||
|
- master
|
||||||
|
platform: debian-7-amd64
|
||||||
|
box : debian-73-x64-virtualbox-nocm
|
||||||
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
|
||||||
|
hypervisor : vagrant
|
||||||
|
CONFIG:
|
||||||
|
log_level: debug
|
||||||
|
type: foss
|
|
@ -1,10 +1,10 @@
|
||||||
HOSTS:
|
HOSTS:
|
||||||
centos-64-x64:
|
centos-64-x64.localdomain:
|
||||||
roles:
|
roles:
|
||||||
- master
|
- master
|
||||||
platform: el-6-x86_64
|
platform: el-6-x86_64
|
||||||
box : centos-64-x64-vbox4210-nocm
|
box : centos-65-x64-virtualbox-nocm
|
||||||
box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
|
||||||
hypervisor : vagrant
|
hypervisor : vagrant
|
||||||
CONFIG:
|
CONFIG:
|
||||||
type: git
|
type: foss
|
||||||
|
|
|
@ -7,4 +7,4 @@ HOSTS:
|
||||||
box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
|
||||||
hypervisor : vagrant
|
hypervisor : vagrant
|
||||||
CONFIG:
|
CONFIG:
|
||||||
type: git
|
type: foss
|
||||||
|
|
10
spec/acceptance/nodesets/sles-11-x64.yml
Normal file
10
spec/acceptance/nodesets/sles-11-x64.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
HOSTS:
|
||||||
|
sles-11-x64.local:
|
||||||
|
roles:
|
||||||
|
- master
|
||||||
|
platform: sles-11-x64
|
||||||
|
box : sles-11sp1-x64-vbox4210-nocm
|
||||||
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
|
||||||
|
hypervisor : vagrant
|
||||||
|
CONFIG:
|
||||||
|
type: foss
|
|
@ -7,4 +7,4 @@ HOSTS:
|
||||||
box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box
|
||||||
hypervisor : vagrant
|
hypervisor : vagrant
|
||||||
CONFIG:
|
CONFIG:
|
||||||
type: git
|
type: foss
|
||||||
|
|
|
@ -7,4 +7,4 @@ HOSTS:
|
||||||
box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box
|
box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box
|
||||||
hypervisor : vagrant
|
hypervisor : vagrant
|
||||||
CONFIG:
|
CONFIG:
|
||||||
type: git
|
type: foss
|
||||||
|
|
Loading…
Reference in a new issue