summaryrefslogtreecommitdiffstats
path: root/network/kea/rc.kea
blob: b7214d2cf7d30a868731960b90b119b41e8f43c1 (plain)
#!/bin/bash

case "$1" in
'start')
  keactrl start
  ;;
'stop')
  keactrl stop
  ;;
'restart')
  keactrl stop
  keactrl start
  ;;
'reload')
  keactrl reload
  ;;
'status')
  keactrl status
  ;;
*)
  echo "usage $0 start|stop|restart|reload|status"
esac