1
0
mirror of https://github.com/hukl/freebsd-toolbox.git synced 2025-11-20 03:08:43 +01:00

Create quicketc.sh

This commit is contained in:
John-Paul Bader
2023-12-12 11:58:34 +01:00
committed by GitHub
parent e0387cf549
commit b8457dcd95

58
quicketc.sh Normal file
View File

@ -0,0 +1,58 @@
#!/bin/sh
unset JAIL_DIR TARBALL
usage() {
echo "USAGE: quicketc -h | -t <path/to/tarfile> directory_or_glob_pattern"
exit 1
}
while getopts j:t:h opt; do
case $opt in
t) TARBALL=$OPTARG
;;
h) echo $USAGE
exit 0
;;
'?') echo "$0: invalid option -$OPTARG" >&2
usage
;;
esac done
shift $((OPTIND - 1))
[ -z "$TARBALL" ] && usage
NUMBER_OF_JAILS=0
NUMBER_OF_JAIL_ARGS=$#
JAILS=""
while [ $NUMBER_OF_JAILS -lt $NUMBER_OF_JAIL_ARGS ]
do
JAILS="$JAILS$1 "
NUMBER_OF_JAILS=$(($NUMBER_OF_JAILS+1))
shift
done
echo $NUMBER_OF_JAIL_ARGS
echo $JAILS
# Build Tarball if specified file does not yet exist
if [ -f $TARBALL ]
then
echo "Found existing Tarball at $TARBALL"
else
echo "Generate Source Tarball $TARBALL"
etcupdate build $TARBALL
fi
# Loop through each subdirectory in JAIL_DIR
for jail_sub_dir in $JAILS; do
# Check if the directory exists
if [ -d "$jail_sub_dir" ]; then
# Run etcupdate commands with the current subdirectory
echo "Updating: $jail_sub_dir"
etcupdate -t $TARBALL -D "$jail_sub_dir"
etcupdate resolve -D "$jail_sub_dir"
fi
done