summarylogtreecommitdiffstats
path: root/upmpdcli.install
blob: c68f7f6b6dbd88192fc4b5a24b1a1e66f343dcc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
  if ! getent group upmpdcli >/dev/null; then
     groupadd --system upmpdcli >/dev/null
  fi
  if ! getent passwd upmpdcli >/dev/null; then
     useradd -g upmpdcli --system upmpdcli -s /bin/false -d / >/dev/null
  fi
}

post_upgrade() {
  post_install $1
}