d1f2eade8f
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
14 lines
228 B
Bash
Executable file
14 lines
228 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "$0 host-to-configure"
|
|
exit 1
|
|
fi
|
|
|
|
host=$1
|
|
|
|
ssh -A ungleich@control.ungleich.ch "
|
|
cd ~/.cdist
|
|
git pull
|
|
git submodule update --init; " '~/cdist/bin/cdist config -vp' "$@"
|
|
|