diff options
author | Thibaut Notteboom <thibaut.notteboom@gmail.com> | 2016-12-08 23:32:35 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-12-10 00:57:38 +0000 |
commit | 2278ebb4601bd75afb4beae31a5b4b5e8e4b8895 (patch) | |
tree | d6042247da7224b81512fb940b01ef4aeda70825 /network/kea/README.SLACKWARE | |
parent | 1b3d29cb0db41683c27fdd5f2cbec542ba936548 (diff) |
network/kea: Added (DHCPv4/DHCPv6 server).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/kea/README.SLACKWARE')
-rw-r--r-- | network/kea/README.SLACKWARE | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/network/kea/README.SLACKWARE b/network/kea/README.SLACKWARE new file mode 100644 index 0000000000000..9e50869a15607 --- /dev/null +++ b/network/kea/README.SLACKWARE @@ -0,0 +1,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 |