Hi, a couple of glitches I noticed after installing zcs-3.1.0_GA_332.DEBIAN3.1.tgz:
1. the file /etc/init.d/zimbra is missing. This replacement worked fine for me:
#!/bin/bash
RETVAL=0
case "$1" in
restart)
su zimbra /opt/zimbra/bin/zmcontrol stop
su zimbra /opt/zimbra/bin/zmcontrol start
RETVAL=$?
;;
start)
su zimbra /opt/zimbra/bin/zmcontrol start
RETVAL=$?
;;
stop)
su zimbra /opt/zimbra/bin/zmcontrol stop
RETVAL=$?
;;
esac
exit $RETVAL
2. zmapachectl wants "reload" and httpd -k wants "restart". So:
zimbra@host$ zmapachectl reload
httpd: illegal option -- k
Usage: /opt/zimbra/httpd-2.0.54/bin/httpd [-D name] [-d directory] [-f file]
[-C "directive"] [-c "directive"]
[-k start|restart|graceful|stop]
[-v] [-V] [-h] [-l] [-L] [-t] [-S]
zimbra@host$ zmapachectl restart
/opt/zimbra/bin/zmapachectl start|stop|reload|status
Minor glitches on the road to debian heaven :-)
ljm.


LinkBack URL
About LinkBacks

