postfix-mailgraph/rc.postfix-mailgraph

Mon, 20 Apr 2009 19:22:00 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Mon, 20 Apr 2009 19:22:00 +0200
changeset 178
0ba300bdf30a
child 193
9f27b979db4d
permissions
-rw-r--r--

Change unfortunate but partly useful overreaching security tradeoff.
The principle of allocating each running process an individual system
user and group can have security benefits, however maintining a plethora
of users, groups, processes, file modes, file permissions, and even
nonportable file ACLs on a host serving from a hundred processes has
some security disadvantages. This tradeoff is even worse for systems
like OpenPKG which benefit from administration transparency through the
use of minimal system intrusion and only three usage privilege levels.

michael@171 1 #!@l_prefix@/bin/openpkg rc
michael@171 2 ##
michael@171 3 ## rc.postfix-mailgraph -- Run-Commands
michael@171 4 ##
michael@171 5
michael@171 6 %config
michael@171 7 postfix_mailgraph_enable="$openpkg_rc_def"
michael@171 8
michael@171 9 %common
michael@171 10 postfix_mailgraph_pidfile="@l_prefix@/var/postfix-mailgraph/run/mailgraph.pid"
michael@171 11 postfix_mailgraph_signal () {
michael@171 12 [ -f $postfix_mailgraph_pidfile ] \
michael@171 13 && kill -$1 `cat $postfix_mailgraph_pidfile`
michael@171 14 }
michael@171 15
michael@171 16 %status -u @l_susr@ -o
michael@171 17 postfix_mailgraph_usable="unknown"
michael@171 18 postfix_mailgraph_active="no"
michael@171 19 rcService postfix-mailgraph enable yes && \
michael@171 20 postfix_mailgraph_signal 0 && postfix_mailgraph_active="yes"
michael@171 21 echo "postfix_mailgraph_enable=\"$postfix_mailgraph_enable\""
michael@171 22 echo "postfix_mailgraph_usable=\"$postfix_mailgraph_usable\""
michael@171 23 echo "postfix_mailgraph_active=\"$postfix_mailgraph_active\""
michael@171 24
michael@171 25 %start -u @l_susr@
michael@171 26 rcService postfix-mailgraph enable yes || exit 0
michael@171 27 rcService postfix-mailgraph active yes && exit 0
michael@171 28 @l_prefix@/sbin/mailgraph --daemon
michael@171 29
michael@171 30 %stop -u @l_susr@
michael@171 31 rcService postfix-mailgraph enable yes || exit 0
michael@171 32 rcService postfix-mailgraph active no && exit 0
michael@171 33 postfix_mailgraph_signal TERM
michael@171 34
michael@171 35 %restart -u @l_susr@
michael@171 36 rcService postfix-mailgraph enable yes || exit 0
michael@171 37 rcService postfix-mailgraph active no && exit 0
michael@171 38 postfix_mailgraph_signal TERM
michael@171 39 sleep 2
michael@171 40 @l_prefix@/sbin/mailgraph --daemon
michael@171 41

mercurial