Re: startup scripting

2004-01-14 Thread Ryan Mackay
Sometime near Wed, Jan 14, 2004 at 02:34:22PM -0600, Rick Weinbender wrote: > Is this proper way to add my script to startup? > Will this gracefully shutdown any apps my script calls > if I do a cntrl-alt-del at the keyboard? Sure is, however for your script to unload itself it needs to accept the

startup scripting

2004-01-14 Thread Rick Weinbender
Can anyone verify that I am doing this right. I need to add a short bash script of my own, so that the script loads every time the machine boots. * put myscript in /etc/init.d/ chmod 755 myscript update-rc.d myscript defaults 19 * This in fact does work. * My question is: Is this proper way to add