4905ec691b
SVN-Revision: 1413
15 lines
178 B
Bash
15 lines
178 B
Bash
#!/bin/sh
|
|
|
|
DEFAULT=/etc/default/pppoe-server
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
|
|
case $1 in
|
|
start)
|
|
pppoe-server $OPTIONS
|
|
;;
|
|
*)
|
|
echo "usage: $0 (start)"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|