salt/bin/clone_formulas.sh
Georg Pfuetzenreuter 7f9bf11048
Add clone_formulas script
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2023-01-21 19:47:10 +01:00

13 lines
284 B
Bash
Executable File

#!/bin/sh
set -Ceu
FORMULASDIR='/srv/formulas'
if [ ! -d "$FORMULASDIR" ]
then
git clone --recurse-submodules --single-branch -b production https://git.com.de/LibertaCasa/salt-formulas.git "$FORMULASDIR"
exit "$?"
fi
git -C "$FORMULASDIR" pull --recurse-submodules