summaryrefslogtreecommitdiff
path: root/community/opensmtpd/opensmtpd.install
blob: 48366c15c58b42fdfcbe482b1110f1465fa31299 (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
28
29
# arg 1:  the new package version
post_install() {
  # create users
  getent passwd smtpd >/dev/null || useradd -d / -u 91 -g 1 smtpd
  getent passwd smtpq >/dev/null || useradd -d /var/spool/smtpd -u 92 -g 1 smtpq
  getent passwd smtpf >/dev/null || useradd -d / -u 93 -g 1 smtpf
  # initialise aliase db
  #[[ -e /etc/smtpd/aliases.db ]] || makemap -t aliases /etc/smtpd/aliases
  true
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install "$1"
  if (( $(vercmp $2 5.3.3p1-1) < 0 )); then
    echo 'Configuration files have been moved to /etc/smtpd.'
    echo 'New users have been added.'
    echo 'Check your configuration!'
  fi
}

# arg 1:  the old package version
post_remove() {
  for _u in smtpd smtpq smtpf; do userdel -f "$_u"; done
  true
}

# vim:set ts=2 sw=2 et: