munin-node-1.4.5-alt3.1.noarch init-but-no-native-systemd info The package have SysV init script(s) but no native systemd files.; munin-node-1.4.5-alt3.1.noarch init-lsb fail /etc/rc.d/init.d/munin-node: not systemd compatible: lsb init header missing and munin-node.service is not present. See http://www.altlinux.org/Services_Policy for details.; munin-node-1.4.5-alt3.1.noarch unsafe-tmp-usage-in-scripts fail The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/share/munin/plugins/qmailscan: $ grep -A5 -B5 /tmp/ /usr/share/munin/plugins/qmailscan echo 'graph_title Virus types' echo 'graph_args --base 1000 -l 0 ' echo 'graph_vlabel Daily Virus Types' echo 'graph_category Mail' grep "`date +%d\ %b\ %Y`" $LOG0 $LOG1 > /tmp/q$$ egrep -v 'Disallowed characters found in MIME headers|Disallowed breakage found in header name - potential virus|Disallowed MIME comment found in header name - potential virus' /tmp/q$$ > /tmp/q2$$ sed 's/clamdscan.*$//' /tmp/q2$$ | sed 's/[ \t]*$//' > /tmp/q$$ cut -f 5 /tmp/q$$ | sort | uniq -c | sort -r | sed 's/\.\|-/_/g' | while read i; do name=`echo $i | awk '{print $2}'`; echo "$name.label $name" ; echo "'$name.draw LINE2"; done rm /tmp/q$$ /tmp/q2$$ exit 0 fi grep "`date +%d\ %b\ %Y`" $LOG0 $LOG1 > /tmp/q$$ egrep -v 'Disallowed characters found in MIME headers|Disallowed breakage found in header name - potential virus|Disallowed MIME comment found in header name - potential virus' /tmp/q$$ > /tmp/q2$$ sed 's/clamdscan.*$//' /tmp/q2$$ | sed 's/[ \t]*$//' > /tmp/q$$ #awk '{ print $NF }' /tmp/q$$ | sort | uniq -c | sed 's/\./_/g' | while read i; do cut -f 5 /tmp/q$$ | sort | uniq -c | sort -r | sed 's/\.\|-/_/g' | while read i; do name=`echo $i | awk '{print $2}'`; echo -n "$name.value " ; echo $i | awk '{print $1}' done rm /tmp/q$$ /tmp/q2$$;