4905ec691b
SVN-Revision: 1413
12 lines
111 B
Bash
12 lines
111 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start|stop)
|
|
adsl-$1
|
|
;;
|
|
*)
|
|
echo "usage: $0 {start|stop}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|