blob: e50a4f0d8d6022c6e85a2ae4162a7998372768a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
set -e
if [ "$1" = "remove" ]; then
[ -f /etc/logrotate.d/rsyslog ] && mv -f /etc/logrotate.d/rsyslog /etc/logrotate.d/rsyslog.disabled
fi
if [ "$1" = "purge" -o "$1" = "disappear" ]; then
[ -f /etc/logrotate.d/rsyslog.disabled ] && rm -f /etc/logrotate.d/rsyslog.disabled
fi
if [ "$1" = "remove" ]; then
# Cleanup sendsigs omit file to avoid false positives from piuparts
rm -f /run/sendsigs.omit.d/rsyslog
fi
#DEBHELPER#
|