summaryrefslogtreecommitdiff
blob: bf1031c9b6b64283fe893a781ed69d36bfe71cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript 
# This init script controls the pppoe connection for adsl lines. 
# Distributed under the terms of the GNU General Public License v2 
 
depend() { 
        need net
		after domainname
} 
 
start() { 
        ebegin "Starting adsl" 
        start-stop-daemon --start --quiet --exec /usr/sbin/adsl-start
        eend $? 
} 
 
stop() { 
        ebegin "Stopping adsl" 
        start-stop-daemon --start --quiet --exec /usr/sbin/adsl-stop
        eend $? 
}