mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
995510e0b9
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
13 lines
335 B
Text
13 lines
335 B
Text
To start SOGo automatically at system startup, add the following to
|
|
your /etc/rc.d/rc.local:
|
|
|
|
if [ -x /etc/rc.d/rc.sogo ]; then
|
|
/etc/rc.d/rc.sogo start
|
|
fi
|
|
|
|
To stop sogo automatically at system shutdown, add the following to
|
|
your /etc/rc.d/rc.local_shutdown:
|
|
|
|
if [ -x /etc/rc.d/rc.sogo ]; then
|
|
/etc/rc.d/rc.sogo stop
|
|
fi
|