added simple script to control gitbucket

This commit is contained in:
silvernode 2016-03-30 21:07:18 -07:00
parent 17caa7e1c2
commit a3bd344ad7

9
Bash Scripts/gitbucket.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
case "$1" in
start) nohup java -jar /home/mollusk/Downloads/gitbucket.war &> /dev/null &
;;
stop) killall java
;;
esac