gitlab: added bash command to start a interactive bash shell

This commit is contained in:
Sameer Naik 2013-11-24 19:57:36 +05:30
parent 40886d11c5
commit ce82c1ffed

View File

@ -165,6 +165,7 @@ gitlab_help () {
echo " start - Starts the gitlab server (default)"
echo " initialize - Initialize the database."
echo " migrate - Migrate the database."
echo " bash - Start interactive bash shell."
echo " help - Displays the help"
}
@ -178,6 +179,9 @@ case "$1" in
migrate)
db_migrate
;;
bash)
/bin/bash -i
;;
help|*)
gitlab_help
;;