5530a20e60
SVN-Revision: 3902
17 lines
217 B
Bash
Executable file
17 lines
217 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DEFAULT=/etc/default/rp-l2tpd
|
|
RUN_D=/var/run
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
|
|
case $1 in
|
|
start)
|
|
[ -d $RUN_D ] || mkdir -p $RUN_D
|
|
l2tpd $OPTIONS
|
|
;;
|
|
*)
|
|
echo "usage: $0 (start)"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|