On Fri, Jun 27, 2003 at 07:57:14AM +0200, Marius Mauch wrote:

> Better solution: 
> Write an initscript for it

Like this one :)

-- 
Tactless

"If it wasn't for fog, the world would run at a really crappy framerate."
This is a .signature virus! Please copy me into your .signature.
#!/sbin/runscript

depend() {
        need net
}

start() {
        ebegin "Starting ADSL"
        /usr/sbin/adsl-start > /dev/null 2>&1
        eend $? "Failed to start ADSL"
}

stop() {
        ebegin "Stopping ADSL"
        /usr/sbin/adsl-stop > /dev/null 2>&1
        eend $? "Failed to stop ADSL"
}

--
[EMAIL PROTECTED] mailing list

Reply via email to