3940ac9f6d
SVN-Revision: 1545
16 lines
172 B
Bash
16 lines
172 B
Bash
#!/bin/sh
|
|
|
|
BIN=portmap
|
|
DEFAULT=/etc/default/$BIN
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
|
|
case $1 in
|
|
start)
|
|
$BIN $OPTIONS
|
|
;;
|
|
*)
|
|
echo "usage: $0 start"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|