https://bugs.contribs.org/show_bug.cgi?id=7096
--- Comment #4 from Jean-Philippe Pialasse <[email protected]> ---
%post
if [ $1 -ge 2 ]; then
mkdir -p /var/lib/rrd/backup
/bin/mv /var/lib/rrd/*.rrd /var/lib/rrd/backup/ &> /dev/null
# FIXME: Fix for broken postun in previous versions (remove later)
/sbin/service sysmon restart &> /dev/null || :
fi
should be change to
%post
if [ $1 -ge 2 ]; then
/sbin/service sysmon restart &> /dev/null || :
fi
while usually we should not use those scriptlet and rather use events, let's
leave the remains of the restart there for the moment.
--
You are receiving this mail because:
You are the QA Contact for the bug._______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/