Skip to content
This repository was archived by the owner on Apr 16, 2023. It is now read-only.
Open
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
3 changes: 2 additions & 1 deletion bin/lstart
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@ fi

# If no lab directory has been given, assume current directory
LAB_DIRECTORY=${LAB_DIRECTORY:-${PWD}}
. "$NETKIT_HOME/bin/lcommon"

# Check that the lab directory exists
if [ ! -d "$LAB_DIRECTORY" ]; then
Expand All @@ -295,6 +294,8 @@ if containsRegexp LAB_DIRECTORY " "; then
exit 1
fi

. "$NETKIT_HOME/bin/lcommon"

# Check whether parallel startup and -f are being used together
if [ -f "$LAB_DIRECTORY/lab.dep" -a ! -z "$FASTMODE" -a -z "$BE_SEQUENTIAL" ]; then
echo 1>&2 "Warning: fast mode is ignored when using parallel startup."
Expand Down