Advertisement
Guest User

Untitled

a guest
May 30th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. description "Zing HTTPd"
  2.  
  3. start on filesystem
  4. stop on runlevel [!2345]
  5.  
  6. respawn
  7. respawn limit 10 5
  8. umask 022
  9. oom never
  10. expect daemon
  11. chdir /etc/zing-httpd
  12.  
  13. pre-start script
  14. test -x /usr/sbin/zing-httpd || { stop; exit 0; }
  15. test -c /dev/null || { stop; exit 0; }
  16. end script
  17.  
  18. exec /usr/sbin/zing-httpd -c /etc/zing-httpd/zing-httpd.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement