blob: 711cbe568aacb2107001f8093925dc18d3bce510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
# /etc/fetchmail must be owned by fetchmail for daemon to work.
echo "If you run fetchmail as a daemon and not a cron job"
echo "then 'chown fetchmail /etc/fetchmailrc'"
getent passwd fetchmail >/dev/null || usr/sbin/useradd -u 90 -g nobody \
-d '/var/run/fetchmail' -c 'Fetchmail daemon' -s /bin/false fetchmail
}
post_upgrade() {
getent passwd fetchmail >/dev/null || usr/sbin/useradd -u 90 -g nobody \
-d '/var/run/fetchmail' -c 'Fetchmail daemon' -s /bin/false fetchmail
if [ "$(vercmp $2 6.3.19)" -lt 0 ] ; then
chsh -s /bin/false fetchmail
fi
}
pre_remove() {
usr/sbin/userdel fetchmail &>/dev/null
}
|