blob: 2422657ee8ad94bac2272a8e85749ddd4c9ded88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
#!/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 $?
  |