mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
2278ebb460
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
16 lines
364 B
Text
16 lines
364 B
Text
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
|