
Untitled
By: a guest on
Aug 9th, 2012 | syntax:
Bash | size: 0.45 KB | hits: 18 | expires: Never
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
PID="/var/run/etherpad-lite/etherpad-lite.pid"
LOG="/var/log/etherpad-lite/etherpad-lite.log"
depend() {
need mysql
}
start() {
# Start Etherpad
/bin/su -l -c "bin/run.sh &" etherpad-lite >> $LOG
}
stop() {
# Terminate Etherpad-lite
kill `ps ax | grep [s]erver.js | awk '{print $1}'`
}