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
544 B
19 lines
544 B
#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc |
|
## |
|
## rc.postfix-mailgraph -- Run-Commands |
|
## |
|
|
|
%config |
|
postfix_mailgraph_enable="$openpkg_rc_def" |
|
|
|
%start -p 100 -u @l_susr@ |
|
rcService postfix_mailgraph enable yes || exit 0 |
|
@l_prefix@/sbin/mailgraph --daemon |
|
|
|
%stop -p 200 -u @l_susr@ |
|
rcService postfix_mailgraph enable yes || exit 0 |
|
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 |
|
|
|
|