diff options
Diffstat (limited to 'archinstall.sh')
-rw-r--r-- | archinstall.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall.sh b/archinstall.sh index 025f318..f205409 100644 --- a/archinstall.sh +++ b/archinstall.sh @@ -55,6 +55,7 @@ REPOSITORY_URL="https://github.com/xengineering/archinstall/" REPOSITORY_PATH="/opt/archinstall" BRANCH_OR_COMMIT="master" # select another branch name or commit hash if needed LOG_FILE_PATH="/var/log/archinstall.log" +CONFIG_FILE_PATH="/etc/archinstall/config.json" DELAY=0.5 # delay for reading messages in seconds @@ -104,4 +105,4 @@ sleep $DELAY # Launching first stage bash $REPOSITORY_PATH/bin/first_stage.sh \ -$DELAY $REPOSITORY_PATH $LOG_FILE_PATH | tee -a $LOG_FILE_PATH +$DELAY $REPOSITORY_PATH $LOG_FILE_PATH $CONFIG_FILE_PATH | tee -a $LOG_FILE_PATH |