blob: 7ced4dc8540c57636938749b729faebaca1b251f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
# If:
# 1) syslog.conf exists
# 2) it does contain some directive for sshguard
# then do the following:
# @ if the directive was the default directive (as installed by pkg-install)
# then remove it
# @ if the directive is some custom (uncommented) directive, comment it
# and reload syslogd eventually.
# real syslog.conf configuration file path
SYSLOGCONF=/etc/syslog.conf
# configuration line to add
SSHGUARDCONFLINE="auth.info;authpriv.info |exec $PKG_PREFIX/sbin/sshguard"
case "$2" in
"DEINSTALL")
if (test -f "$SYSLOGCONF" && grep -q '^[^#].*sshguard' "$SYSLOGCONF")
then
TMPFILE=`mktemp -q /tmp/syslogcXX`
if grep -qx "$SSHGUARDCONFLINE" "$SYSLOGCONF"
then
# remove default sshguard entry from syslog.conf
echo "I'm removing the default sshguard syslog entry for you..."
grep -vx "$SSHGUARDCONFLINE" "$SYSLOGCONF" > $TMPFILE
else
# comment customized sshguard configuration line
echo "I'm commenting your custom sshguard syslog entry for you..."
sed "s/^[^#].*sshguard.*/#&/" < "$SYSLOGCONF" > $TMPFILE
fi
mv $TMPFILE "$SYSLOGCONF"
/etc/rc.d/syslogd reload
fi
;;
esac
|