This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/provision.sh

79 lines
2.0 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
2023-01-16 14:31:25 +00:00
set -e
2022-12-26 01:13:06 +00:00
usage() {
printf '%s\n' "Usage:"
2023-01-16 14:27:07 +00:00
printf '$ %s\n' "$0 [-h|--help]"
printf '$ %s\n' "$0 [--dry] os"
printf '$ %s\n' "$0 [--dry] docker"
printf '$ %s\n' "$0 [--dry] users [-i|--init]"
printf '$ %s\n' "$0 [--dry] reboot [-f|--force]"
printf '$ %s\n' "$0 [--dry] services [-d|--down] [SINGLE_SERVICE]"
2023-01-16 14:27:07 +00:00
}
install_modules() {
if [ -z "$(ansible-galaxy collection list community.general 2>/dev/null)" ]; then
ansible-galaxy collection install community.general
fi
}
2023-01-04 20:02:33 +00:00
cd "$(dirname "$0")" || exit 255
if [ "$1" = "--dry" ]; then
EXEC="echo"
shift
else
EXEC="eval"
fi
BASE_CMD="ansible-playbook playbook.yml --ask-vault-pass --ask-become-pass"
TAG="$1"
shift
case $TAG in
2023-03-29 18:41:30 +00:00
"")
2023-05-28 15:58:12 +00:00
install_modules; $EXEC "$BASE_CMD" ;;
os|docker|firewall|ssh)
install_modules; $EXEC "$BASE_CMD --tags '$TAG'" ;;
users)
install_modules
if [ "$1" = "-i" ] || [ "$1" = "--init" ]; then
$EXEC "$BASE_CMD --user root --tags '$TAG'"
else
$EXEC "$BASE_CMD --tags '$TAG'"
fi
;;
2023-03-29 18:41:30 +00:00
reboot)
install_modules
if [ "$1" = "-f" ] || [ "$1" = "--force" ]; then
$EXEC "$BASE_CMD --tags '$TAG' --extra-vars 'force_reboot=true'"
2023-03-29 18:41:30 +00:00
else
$EXEC "$BASE_CMD --tags '$TAG' --extra-vars 'reboot=true'"
2023-03-29 18:41:30 +00:00
fi
;;
services)
install_modules
if [ "$1" = "-d" ] || [ "$1" = "--down" ]; then
DOWN=1
shift
2023-03-29 18:41:30 +00:00
fi
if [ -z "$DOWN" ] && [ -n "$1" ]; then
VARS="single_service=$1"
elif [ -n "$DOWN" ] && [ -z "$1" ]; then
VARS="stop=true"
elif [ -n "$DOWN" ] && [ -n "$1" ]; then
VARS='{"stop": true, "single_service": "'$1'"}'
fi
$EXEC "$BASE_CMD --tags '$TAG' $(test -z "$VARS" || echo "--extra-vars '$VARS'")"
2023-03-29 18:41:30 +00:00
;;
-h|--help)
usage ;;
*)
usage >&2; exit 1 ;;
esac