mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 16:34:04 +02:00
13 lines
111 B
Plaintext
13 lines
111 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "$1" in
|
||
|
start|stop)
|
||
|
adsl-$1
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 {start|stop}"
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
exit $?
|