aboutsummaryrefslogtreecommitdiff
path: root/network/kea/README.SLACKWARE
diff options
context:
space:
mode:
authorThibaut Notteboom <thibaut.notteboom@gmail.com>2016-12-08 23:32:35 +0000
committerDavid Spencer <idlemoor@slackbuilds.org>2016-12-10 00:57:38 +0000
commit2278ebb4601bd75afb4beae31a5b4b5e8e4b8895 (patch)
treed6042247da7224b81512fb940b01ef4aeda70825 /network/kea/README.SLACKWARE
parent1b3d29cb0db41683c27fdd5f2cbec542ba936548 (diff)
downloadslackbuilds-2278ebb4601bd75afb4beae31a5b4b5e8e4b8895.tar.xz
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.SLACKWARE16
1 files changed, 16 insertions, 0 deletions
diff --git a/network/kea/README.SLACKWARE b/network/kea/README.SLACKWARE
new file mode 100644
index 000000000000..9e50869a1560
--- /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