diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-09-09 20:45:19 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2010-09-09 20:45:19 -0400 |
commit | 5286d9bfcf992629f2b19a742cd6e0fb2ca5a614 (patch) | |
tree | 2cbb78f6084877a3fd3d43f42a285eefdbfa8ecc /network/zarafa/README.Slackware | |
parent | 5b3f4eb2b1ffb3389f3a9fa53d53bec4e3c9a74d (diff) | |
download | slackbuilds-5286d9bfcf992629f2b19a742cd6e0fb2ca5a614.tar.gz |
network/zarafa: Updated for version 6.40.2.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/zarafa/README.Slackware')
-rw-r--r-- | network/zarafa/README.Slackware | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/network/zarafa/README.Slackware b/network/zarafa/README.Slackware index d86165b9d7..569141b247 100644 --- a/network/zarafa/README.Slackware +++ b/network/zarafa/README.Slackware @@ -23,28 +23,43 @@ You can change the name of the user and password as you please. ---------------------------------- The sample configuration files are installed in /etc/zarafa/ -Thera are files for the server, spooler, gateway, etc. +There are files for the server, spooler, gateway, etc. Change at least the file server.cfg to the correct values for your MySQL server: - mysql_host (can be localhost is mysql is on the same box) + mysql_host (can be localhost if mysql is on the same box) mysql_user (default is root, not a good idea) mysql_password 3) Starting and stopping services --------------------------------- -You can start and stop the zarafa services with the command: +For all services a /etc/rc.d/rc.zarafa-* script is installed. +To start a particular service, make the script executable and include a few +lines in your /etc/rc.d/rc.local and /etc/rc.d/rc.local_shutdown script. - # zarafa-<service> start | stop +As an example for the zarafa-server: -For instance: + # chmod +x /etc/rc.d/rc.zarafa-server - # zarafa-server start +Include the following lines in /etc/rc.d/rc.local, they will check all +scripts related to zarafa and start them if the executable bit is set: -Select the services you need to start and put the commands in -/etc/rc.d/rc.local & /etc/rc.d/rc.local_shutdown + for z in server spooler gateway dagent ical monitor indexer ; do + if [ -x /etc/rc.d/rc.zarafa-$z ]; then + /etc/rc.d/rc.zarafa-$z start + fi + done + +To stop them at shutting down your server, include these lines in +/etc/rc.d/rc.local_shutdown: + + for z in indexer monitor ical dagent gateway spooler server ; do + if [ -x /etc/rc.d/rc.zarafa-$z ]; then + /etc/rc.d/rc.zarafa-$z stop + fi + done 4) Creating "public store" -------------------------- |