geteduroam-ops/global/pre-tasks.d/030puppet

25 lines
656 B
Plaintext
Raw Normal View History

2013-09-02 14:01:50 +00:00
#!/bin/sh
#
# Re-used example from SJD
#
set -e
stamp="$COSMOS_BASE/stamps/puppet-tools-v01.stamp"
if ! test -f "${stamp}" -a -f /usr/bin/puppet; then
2013-09-02 14:01:50 +00:00
apt-get update
apt-get -y install puppet
. /etc/os-release
2013-09-02 14:01:50 +00:00
# Note: in posix shell, string comparison is done with a single =
if [ "${ID}" = "debian" ] && [ "${VERSION_ID}" -ge 12 ]; then
2023-11-14 14:27:45 +00:00
apt-get -y install cron puppet-module-puppetlabs-stdlib puppet-module-puppetlabs-cron-core puppet-module-camptocamp-augeas puppet-module-puppetlabs-concat puppet-module-puppetlabs-apt puppet-module-puppetlabs-vcsrepo
fi
mkdir -p "$(dirname "${stamp}")"
touch "${stamp}"
2013-09-02 14:01:50 +00:00
fi