summaryrefslogtreecommitdiffstats
path: root/network/kea/README.SLACKWARE
blob: 9e50869a156071913dee484d1c0be83f88a926f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
README.SLACKWARE
================

To start kea automatically at system startup, add the following to
your /etc/rc.d/rc.local:

  if [ -x /etc/rc.d/rc.kea ]; then
    /etc/rc.d/rc.kea start
  fi

To stop kea automatically at system shutdown, add the following to
your /etc/rc.d/rc.local_shutdown:

  if [ -x /etc/rc.d/rc.kea ]; then
    /etc/rc.d/rc.kea stop
  fi