From 92ba870cfb6f65f3317e49ca72d654908b5b340a Mon Sep 17 00:00:00 2001 From: Sergii Kipot Date: Wed, 13 Apr 2016 19:29:36 +0300 Subject: [PATCH] MT#17213 Add 'apt' to --tags Apt modules should be also executed during puppet apply core. It's not reasonable to tag all hierarchy of apt modules with 'core'. Instead let's add 'apt' to --tags. Change-Id: I6a2a6feb5f6b82a5894682b07958e4084c705273 --- deployment.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment.sh b/deployment.sh index 9367113..f5d18bd 100755 --- a/deployment.sh +++ b/deployment.sh @@ -2199,7 +2199,7 @@ puppet_install_from_git () { check_puppet_rc "${PIPESTATUS[0]}" "2" fi - grml-chroot $TARGET puppet apply --test --modulepath="${PUPPET_CODE_PATH}/modules" --tags core \ + grml-chroot $TARGET puppet apply --test --modulepath="${PUPPET_CODE_PATH}/modules" --tags core,apt \ "${PUPPET_CODE_PATH}/manifests/site.pp" 2>&1 | tee -a /tmp/puppet.log check_puppet_rc "${PIPESTATUS[0]}" "2" @@ -2211,7 +2211,7 @@ puppet_install_from_git () { } puppet_install_from_puppet () { - grml-chroot $TARGET puppet agent --test --tags core 2>&1 | tee -a /tmp/puppet.log + grml-chroot $TARGET puppet agent --test --tags core,apt 2>&1 | tee -a /tmp/puppet.log check_puppet_rc "${PIPESTATUS[0]}" "2" grml-chroot $TARGET puppet agent --test 2>&1 | tee -a /tmp/puppet.log