summarylogtreecommitdiffstats
path: root/courier-authlib.install
blob: 54fc631b10cf425c1c3bd943be720f04e257d154 (plain)
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
# arg 1:  the new package version
post_install() {
   # creates group and user on virgin systems
  if ! getent group courier >/dev/null; then
    groupadd -g 72 courier >/dev/null 2>&1
  fi

  if getent passwd courier >/dev/null; then
    useradd -u 72 -d /var/spool/courier -g courier -s /bin/false courier >/dev/null 2>&1
  fi

  useradd courier -g courier
  systemd-tmpfiles --create /usr/lib/tmpfiles.d/courier-authlib.conf
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
    post_install $1
}

# arg 1:  the old package version
pre_remove() {
  userdel courier
  groupdel courier
} >/dev/null 2>&1