Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion contrail/localrc-multinode-compute
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PHYSICAL_INTERFACE=eth0
ENABLE_CONTRAIL=yes
Q_PLUGIN=contrail

STACK_DIR=$(cd $(dirname $0) && pwd)
STACK_DIR=$(cd $(dirname ${BASH_SOURCE:-$0}) && pwd)

# log all screen output to this directory
SCREEN_LOGDIR=$STACK_DIR/log/screens
Expand Down
2 changes: 1 addition & 1 deletion contrail/localrc-multinode-server
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PHYSICAL_INTERFACE=eth0
MULTI_HOST=True
Q_PLUGIN=contrail

STACK_DIR=$(cd $(dirname $0) && pwd)
STACK_DIR=$(cd $(dirname ${BASH_SOURCE:-$0}) && pwd)

# log all screen output to this directory
SCREEN_LOGDIR=$STACK_DIR/log/screens
Expand Down
2 changes: 1 addition & 1 deletion contrail/localrc-single
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
STACK_DIR=$(cd $(dirname $0) && pwd)
STACK_DIR=$(cd $(dirname ${BASH_SOURCE:-$0}) && pwd)

SCREEN_LOGDIR=$STACK_DIR/log/screens
LOG=True
Expand Down