From 2f13896f794fdd659f93935af4d2959ef5e22298 Mon Sep 17 00:00:00 2001 From: t470p Date: Sat, 11 May 2024 20:00:35 -0500 Subject: [PATCH] u --- scripts/99_deploy.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index 3504c3e..f56711f 100644 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -16,14 +16,19 @@ if [ $# -lt 1 ]; then fi operation=$1 -clone_trg=/tmp -source ${clone_trg}/lnx-arch/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 +rm -rf ${options_trg} +rm -rf ${options_trg}.tmp +wget -q ${options_url} -O ${options_trg} +source ${options_trg} if [ -z "${OPTIONS_LOADED}" ]; then echo "error: unable to load options" exit 1 fi user=${USER} +clone_trg=/tmp # ~ ~ ~ ~ ~ ~ ~ ~ ~ ~