> On another topic: I put some stuff in my rc.local file that is not
> executing upon bootup. In fact, I don't think -any- of my rc.local
> is executing, because when I run it manually, my "mods" work fine.
> What script calls this file?
/etc/rc.d/rc3.d/S99local is linked to /etc/rc.d/rc.local
If you don't see it there, add it with
cd /etc/rc.d/rc3.d/
ln -s ../rc.local S99local
cd /etc/rc.d/rc5.d/
ln -s ../rc.local S99local
All files/links you see in /etc/rc.d/rc3.d/ and /etc/rc.d/rc5.d/
are executed in alphabetical order when booting up.
Thanks... Dan.