Hello,
I'm using Debain GNU/Linux 3.0 with CPanel. CPanel start script looks very strange. This is head of the script. Lines starting with "--->>>" are my comments.
# cat /etc/init.d/cpanel |head -n 40
#! /bin/sh
#
# cpanel8 Start Cpanel Services
#
# Author: cPanel, Inc. <nick@cpanel.net>
#
# chkconfig: 345 95 10
# description: This is the cpanel webserver and chat.
# processname: cpaneld
# pidfile: /var/run/cpanel.pid
# Source function library.
--->>> This is a part of Red Hat directory structure. Debian GNU/Linux have no /etc/rc.d directory
. /etc/rc.d/init.d/functions
[ -f /usr/local/cpanel/etc/init/startup ] || exit 0
LANG=C
RETVAL=0
# See how we were called.
case "$1" in
start)
umask 0022
if [ -f "/var/cpanel/smtpgidonlytweak" ]; then
echo -n "Starting SMTP Tweak: "
--->>> What is this command daemon? I can't find it in my $PATH. Is this cpanel server command or RedHat specific ?
daemon /scripts/smtpmailgidonly on
echo
fi
echo -n "Starting eximstats: "
daemon /usr/local/cpanel/bin/starteximstats
echo
echo -n "Starting cPanel services: "
daemon /usr/local/cpanel/cpsrvd
echo
echo -n "Starting cPanel Log services: "
daemon /usr/local/cpanel/cpanellogd
echo
echo -n "Starting pop3 services: "
if [ ! -e "/etc/cppopdisable" ]; then
daemon /usr/local/cpanel/bin/cppop
Is there any patches released for this problem? I'm debugging this problems now, but I find many others ;-)
What's default BIND version of CPanel. I have installed bind 8 and bind 9.
Thanks
Thanks


LinkBack URL
About LinkBacks
Reply With Quote