2015-07-28 20:14:01 +00:00
|
|
|
#!/bin/sh
|
2017-07-19 15:15:41 +00:00
|
|
|
# Nico, some years ago
|
2015-07-28 20:14:01 +00:00
|
|
|
|
|
|
|
if [ $# -lt 1 ]; then
|
2017-07-19 15:15:41 +00:00
|
|
|
echo "$0 host(s)-to-configure"
|
2015-07-28 20:14:01 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-07-19 15:15:41 +00:00
|
|
|
ssh -A ungleich@control.place5.ungleich.ch "
|
|
|
|
cd ~/.cdist
|
|
|
|
git pull -v
|
|
|
|
git submodule update --init; " '~/cdist/bin/cdist config -vvp' "$@"
|