Crossepg auto timed actions resolved in NLB image

carrpet

Registered
Messages
183
sWhen I ran ps -A on my Sifteam and NLB images I noticed that crossepgd was started in the Sifteam image and not the NLB image.

The strart up script is in /var/etc/rcS.d/S90crossepg.sh. i guess the sifteam image is running the scripts in rcS.d but the NLB image isn't. So I copied and pasted the contents of S90crossepg.sh into /var/S59_bootscript under the hdd boot up line;

mount -t ext2 /dev/sda2 /media/hdd
#!/bin/sh
export PATH=$PATH:/var/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/var/lib

#[ ! -e /dev/weboutput ] && mkfifo -m 600 /dev/weboutput
sleep 60
[ -e /var/crossepg/crossepgd ] && /var/crossepg/crossepgd &

exit 0

All crossepg auto functions now work and no need for crontabs as a result !
 
Top