Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 9th, 2012  |  syntax: Bash  |  size: 0.45 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #!/sbin/runscript
  2. # Copyright 1999-2012 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: $
  5.  
  6. PID="/var/run/etherpad-lite/etherpad-lite.pid"
  7. LOG="/var/log/etherpad-lite/etherpad-lite.log"
  8.  
  9. depend() {
  10.   need mysql
  11. }
  12.  
  13. start() {
  14.   # Start Etherpad
  15.   /bin/su -l -c "bin/run.sh &" etherpad-lite >> $LOG
  16. }
  17.  
  18. stop() {
  19.   # Terminate Etherpad-lite
  20.   kill `ps ax | grep [s]erver.js | awk '{print $1}'`
  21. }