Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions azure-slurm-install/start-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,11 @@ ensure_enroot_dir() {
#
CONF=/etc/enroot/enroot.conf

# no-op if enroot.conf does not exist
if [ ! -f "$CONF" ]; then
return 0
fi

# extract ENROOT_TEMP_PATH value
ENROOT_TEMP_PATH=$(awk '$1=="ENROOT_TEMP_PATH"{print $2}' "$CONF")

Expand Down
Loading