Hi all,
I have installed
Bigbrother1.9i on Red Hat EL4.
I am not able to get the startup
script for big brother working. I have pasted the script below which
I am using. When I run it manually it works perfect but doesnt start
BB at bootup. I have saved this script 'bb' under /etc/rc.d/init.d/bb
and have created a link in rc3.d directory as K11bb and
S89bb.
#!/bin/sh
#
if [ -x /sbin/runuser ]; then
RUNUSER=runuser
else
RUNUSER=su
fi
case
"$1" in
'start')
$RUNUSER - abhi -c "/usr/local/bb/runbb.sh $1"
;;
'stop')
$RUNUSER - abhi -c "/usr/local/bb/runbb.sh $1"
;;
*)
echo
"Usage: $0 { start | stop }"
exit 1
esac
exit 0
I am not able to figure out this
problem. If someone can help me with this, it will be gr8! My only
doubt is that the links might be the problem?
Thank You,
AJ