#!/bin/bash


case "$1" in
  start) nohup java -jar /home/mollusk/Downloads/gitbucket.war &> /dev/null &
  ;;
  stop) killall java
  ;;
esac