From 56037e9a6e0286640fce1f812f3a9d10c3f8535b Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 8 Oct 2015 12:27:07 -0400 Subject: [PATCH] provide devstack lockout with .no-devstack file. This lets you specify that devstack should not be run by the user on the box that you are on. Helps with running commands in the wrong window. Change-Id: I7aa26df1a2e02331d596bbfefb0697937787252f --- stack.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/stack.sh b/stack.sh index 01668c208b..1abae9c1fd 100755 --- a/stack.sh +++ b/stack.sh @@ -93,6 +93,15 @@ if [[ $EUID -eq 0 ]]; then exit 1 fi +# Provide a safety switch for devstack. If you do a lot of devstack, +# on a lot of different environments, you sometimes run it on the +# wrong box. This makes there be a way to prevent that. +if [[ -e $HOME/.no-devstack ]]; then + echo "You've marked this host as a no-devstack host, to save yourself from" + echo "running devstack accidentally. If this is in error, please remove the" + echo "~/.no-devstack file" + exit 1 +fi # Prepare the environment # -----------------------