#!/bin/sh # # opendchub.service - opendchub service file # case $1 in start) /usr/bin/opendchub ;; stop) killall -q opendchub ;; *) echo "usage: $0 start|stop" esac