You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
426 B
19 lines
426 B
24 years ago
|
#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc
|
||
|
##
|
||
|
## rc.bind -- Run-Commands for Portsentry Daemon
|
||
|
##
|
||
|
|
||
|
%start -p 200 -u root
|
||
|
@l_prefix@/sbin/portsentry -tcp
|
||
|
@l_prefix@/sbin/portsentry -udp
|
||
|
|
||
|
%stop -p 200 -u root
|
||
|
@l_prefix@/sbin/rpmtool signal TERM portsentry
|
||
|
|
||
|
%restart -u root
|
||
|
@l_prefix@/sbin/rpmtool signal TERM portsentry
|
||
|
sleep 2
|
||
|
@l_prefix@/sbin/portsentry -tcp
|
||
|
@l_prefix@/sbin/portsentry -udp
|
||
|
|