From ce82c1ffede9811b692c447c7fcc1cbaf95eb749 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 24 Nov 2013 19:57:36 +0530 Subject: [PATCH] gitlab: added bash command to start a interactive bash shell --- resources/gitlab | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/gitlab b/resources/gitlab index 48a0b0cb..9f4fccd8 100755 --- a/resources/gitlab +++ b/resources/gitlab @@ -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 ;;