Re: rc.local

1999-10-11 Thread Colin Walters
> > /etc/init.d/rmnologin is by default run at 99, which is bad if I want > > to have stuff happen *after* all other initalization. > > > > My solution was to create /etc/init.d/local: > > > > #!/bin/sh > > run-parts /etc/rc.local > > > > and do: &

Re: rc.local

1999-10-11 Thread Craig Sanders
o have stuff happen *after* all other initalization. > > My solution was to create /etc/init.d/local: > > #!/bin/sh > run-parts /etc/rc.local > > and do: > update-rc.d -f rmnologin remove > update-rc.d rmnologin start 98 2 3 4 5 . > update-rc.d local start 99 2 3 4 5 .

rc.local

1999-10-10 Thread Colin Walters
ff happen *after* all other initalization. My solution was to create /etc/init.d/local: #!/bin/sh run-parts /etc/rc.local and do: update-rc.d -f rmnologin remove update-rc.d rmnologin start 98 2 3 4 5 . update-rc.d local start 99 2 3 4 5 . I just plopped my startx script into /etc/rc.local. --