Johan Wassberg
fb4849a0df
nunoc-ops does like this since 2018 so I think it will fly. Also the package `puppet` seems to been around since at-least Ubuntu 14.04.
17 lines
250 B
Bash
Executable file
17 lines
250 B
Bash
Executable file
#!/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
|
|
apt-get update
|
|
apt-get -y install puppet
|
|
|
|
mkdir -p `dirname $stamp`
|
|
touch $stamp
|
|
fi
|