From 9fcae73c4c4cba67b17483b1516484e7da133aac Mon Sep 17 00:00:00 2001 From: Lukas Werner <lks.werner@fau.de> Date: Tue, 1 Jun 2021 11:22:53 +0000 Subject: [PATCH] Removed echo --- runner_scripts/root/run.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/runner_scripts/root/run.sh b/runner_scripts/root/run.sh index 9ba01b0..4ab6f3c 100755 --- a/runner_scripts/root/run.sh +++ b/runner_scripts/root/run.sh @@ -76,7 +76,6 @@ then SALLOC_OPTIONS=() for E in $(env | grep -E "^SLURM_") do - echo $E SALLOC_OPTIONS+=("$(echo "${E#SLURM_}" | awk -F "=" '{gsub("_", "-", $1); print "--"tolower($1)"="$2}')") done @@ -85,7 +84,6 @@ then exec salloc --quiet --uid "$AUTH_USER" --gid "$(id -g -n "$AUTH_USER")" --chdir "$BASE_DIR" "${SALLOC_OPTIONS[@]}" \ srun --cpu-bind none --export=HOME="$AUTH_USER_HOME",SHELL="$AUTH_USER_SHELL" --wait 0 --kill-on-bad-exit=1 \ "$AUTH_USER_SHELL" --login "$BASE_DIR.tmp/$CUSTOM_ENV_CI_JOB_ID.sh" - else runuser --login "$AUTH_USER" --command "cd \"$BASE_DIR\"; $1" fi -- GitLab