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.
21 lines
578 B
21 lines
578 B
#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc |
|
## |
|
## rc.postfix-mailgraph -- Run-Commands for postfix-mailgraph |
|
## |
|
|
|
%config |
|
postfix_mailgraph_enable="yes" |
|
|
|
%start -p 100 -u @l_susr@ |
|
if opServiceEnabled postfix_mailgraph; then |
|
@l_prefix@/sbin/mailgraph --daemon |
|
fi |
|
|
|
%stop -p 200 -u @l_susr@ |
|
if opServiceEnabled postfix_mailgraph; then |
|
if [ -f @l_prefix@/var/postfix-mailgraph/run/mailgraph.pid ]; then |
|
kill -TERM `cat @l_prefix@/var/postfix-mailgraph/run/mailgraph.pid` >/dev/null 2>&1 || true |
|
sleep 2 |
|
fi |
|
fi |
|
|
|
|