This commit is contained in:
deathbybandaid 2023-04-05 10:21:12 -04:00
parent ad36d3d6fb
commit 3f9d59a204
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
SCRIPTDIR=$(dirname $0) SCRIPTDIR=$(dirname $0)
source "$SCRIPTDIR/common/colors.sh" source "$SCRIPTDIR/common/colors.sh"
source "$SCRIPTDIR/common/functions.sh" source "$SCRIPTDIR/common/functions.sh"
source "$SCRIPTDIR/common/load-defaults.sh" source "$SCRIPTDIR/common/load-defaults.sh" "$@"
printf "$COL_LIGHT_BLUE" "* Checking Current Timezone" printf "$COL_LIGHT_BLUE" "* Checking Current Timezone"
current_timezone=`cat /etc/timezone` current_timezone=`cat /etc/timezone`

View File

@ -5,7 +5,7 @@ case "$1" in
*) echo "'$1' is not a valid template-setup command";; *) echo "'$1' is not a valid template-setup command";;
esac esac
if [ "$load_defaults" == "defaults" ]; then if [ "$load_defaults" == "defaults" ]; then
source $SCRIPTDIR/common/defaults-dbb "$@" source $SCRIPTDIR/common/defaults-dbb
else else
source $SCRIPTDIR/common/defaults-blank "$@" source $SCRIPTDIR/common/defaults-blank
fi fi