diff options
Diffstat (limited to 'office/SOGo/README.SBo')
-rw-r--r-- | office/SOGo/README.SBo | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/office/SOGo/README.SBo b/office/SOGo/README.SBo new file mode 100644 index 0000000000..a8e1180253 --- /dev/null +++ b/office/SOGo/README.SBo @@ -0,0 +1,13 @@ +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 |