Skip to content

Commit

Permalink
redmine: added bash command to start interactive bash shell
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Naik committed Apr 14, 2014
1 parent 72062b4 commit 063d001
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/redmine
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ redmine_help () {
echo " start - Starts the redmine server (default)"
echo " initialize - Initialize the database."
echo " migrate - Migrate the database."
echo " bash - Start interactive bash shell."
echo " help - Displays the help"
}

Expand All @@ -110,6 +111,9 @@ case "$1" in
migrate)
db_migrate
;;
bash)
/bin/bash -i
;;
help|*)
redmine_help
;;
Expand Down

0 comments on commit 063d001

Please sign in to comment.