This commit is contained in:
committer
2024-05-21 07:09:24 -05:00
parent a10448654c
commit 24623d3e51

View File

@@ -16,12 +16,6 @@ if [ $# -lt 1 ]; then
fi fi
operation=$1 operation=$1
clone_trg=${CLONE_TARGET_DIR} # value found in options.sh file, sourced above
if [[ -z "${clone_trg}" ]] ; then
echo "error: CLONE_TARGET_DIR is empty"
exit 1
fi
options_url=https://git.mz.fo/fro/lnx-arch/raw/branch/master/dots/archinstall/${HOSTNAME}/options.sh options_url=https://git.mz.fo/fro/lnx-arch/raw/branch/master/dots/archinstall/${HOSTNAME}/options.sh
options_trg=/tmp/options.sh options_trg=/tmp/options.sh
rm -rf ${options_trg} rm -rf ${options_trg}
@@ -33,6 +27,12 @@ if [ -z "${OPTIONS_LOADED}" ]; then
exit 1 exit 1
fi fi
clone_trg=${CLONE_TARGET_DIR} # value found in options.sh file, sourced above
if [[ -z "${clone_trg}" ]] ; then
echo "error: CLONE_TARGET_DIR is empty"
exit 1
fi
secrets_cred_path=/home/${USER}/syncDir/secrets/toBeSources/cred.sh secrets_cred_path=/home/${USER}/syncDir/secrets/toBeSources/cred.sh
source ${secrets_cred_path} source ${secrets_cred_path}