Run puppet-apply on debian jessie jenkins slaves

Change-Id: I4e876f997324bdb43732bec26067d88531b587d5
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2016-03-16 20:15:18 -04:00
parent 50d2b4ac53
commit ae2b68c4b7
2 changed files with 3 additions and 0 deletions

View File

@ -999,6 +999,7 @@ node 'single-use-slave-bare' {
# Node-OS: centos7
# Node-OS: fedora23
# Node-OS: jessie
# Node-OS: precise
# Node-OS: trusty
# This is not meant to be an actual node that connects to the master.

View File

@ -82,6 +82,8 @@ if [[ `lsb_release -i -s` == 'CentOS' ]]; then
if [[ `lsb_release -r -s` =~ '7' ]]; then
CODENAME='centos7'
fi
elif [[ `lsb_release -i -s` == 'Debian' ]]; then
CODENAME=`lsb_release -c -s`
elif [[ `lsb_release -i -s` == 'Ubuntu' ]]; then
CODENAME=`lsb_release -c -s`
elif [[ `lsb_release -i -s` == 'Fedora' ]]; then