You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
214 B

  1. #!/bin/sh /etc/rc.common
  2. #Copyright (C) 2010 Ondrej Caletka <o.caletka@sh.cvut.cz>
  3. START=61
  4. start () {
  5. unbound
  6. }
  7. stop () {
  8. PIDFILE='/var/run/unbound.pid'
  9. if [ -f $PIDFILE ] ; then
  10. kill $(cat $PIDFILE)
  11. fi
  12. }