#!/bin/sh -e case "$1" in start) /usr/local/LibreSource/start.sh ;; stop) /usr/local/LibreSource/stop.sh ;; restart) /usr/local/LibreSource/stop.sh /usr/local/LibreSource/start.sh ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac exit 0