updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / dovecot+sieve / dovecot.install
blob51757346cbd1de99d278113bfa9a3420fbfc694c
1 # arg 1:  the new package version
2 post_install() {
3     if [ -z "`grep '^dovecot:' /etc/group`" ]; then
4         groupadd -g 76 dovecot >& /dev/null
5     fi
6     if [ -z "`grep '^dovecot:' /etc/passwd`" ]; then
7         useradd -u 76 -d /var/run/dovecot/login -g dovecot -s /bin/false dovecot
8     fi
11 # arg 1:  the new package version
12 # arg 2:  the old package version
13 post_upgrade() {
14     post_install $1
17 # arg 1:  the old package version
18 pre_remove() {
19     userdel dovecot &> /dev/null
20     groupdel dovecot &> /dev/null
23 op=$1
24 shift
26 $op $*