0e9ab0b18e
SVN-Revision: 1542
16 lines
177 B
Bash
Executable file
16 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
|
|
BIN=parprouted
|
|
DEFAULT=/etc/default/$BIN
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
|
|
case $1 in
|
|
start)
|
|
$BIN $OPTIONS
|
|
;;
|
|
*)
|
|
echo "usage: $0 (start)"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|