From ae2b68c4b7572a05d358c8189e1ca9bc1bab603e Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Wed, 16 Mar 2016 20:15:18 -0400 Subject: [PATCH] Run puppet-apply on debian jessie jenkins slaves Change-Id: I4e876f997324bdb43732bec26067d88531b587d5 Signed-off-by: Paul Belanger --- manifests/site.pp | 1 + tools/apply-test.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/manifests/site.pp b/manifests/site.pp index 300de42e3a..449b473560 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -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. diff --git a/tools/apply-test.sh b/tools/apply-test.sh index 10acaac9da..663f5e58cb 100755 --- a/tools/apply-test.sh +++ b/tools/apply-test.sh @@ -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