blob: 9a8fcccf4554f3d79be0525f84a2a43a955dd9bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/sh
#
# missing: header, license
bad_usage() { usage 1>&2; [ $# -eq 0 ] || echo "$@"; exit 1; }
usage() {
cat <<EOF
Usage: ${0##*/} [--init]
Configures Leap services as defined from ../config/default.yaml
options:
--init Install dependencies, should be run once at the first time.
EOF
}
install_prerequisites () {
PACKAGES='git puppet ruby-hiera-puppet'
echo "Installing $PACKAGES, configuring some basic puppet requirements."
dpkg -l $PACKAGES > /dev/null 2>&1
if [ ! $? -eq 0 ]
then
apt-get update
apt-get install -y $PACKAGES
fi
# lsb is needed for a first puppet run
puppet apply $PUPPET_ENV --execute 'include lsb'
}
# main
PUPPET_ENV='--confdir=puppet'
long_opts="init"
getopt_out=$(getopt --name "${0##*/}" \
--options "${short_opts}" --long "${long_opts}" -- "$@") && \
eval set -- "${getopt_out}" || bad_usage
while [ $# -ne 0 ]; do
cur=${1}; next=${2};
case "$cur" in
--help) usage ; exit 0;;
--init) install_prerequisites ; exit 0;;
--) shift; break;;
esac
shift;
done
[ $# -gt 0 ] && bad_usage "too many arguments"
# keep repository up to date
git pull
git submodule init
git submodule update
# run puppet without irritating deprecation warnings
puppet apply $PUPPET_ENV puppet/manifests/site.pp $@ | grep -v 'warning:.*is deprecated'
|