aboutsummaryrefslogtreecommitdiff
path: root/debian/libeufin-bank.postinst
blob: 186ed3e80258cff91a610a704910759f9dd50694 (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
30
31
32
33
34
35
36
37
#!/bin/bash

set -e

. /usr/share/debconf/confmodule

case "${1}" in
configure)

  if ! getent group libeufin-bank >/dev/null; then
    addgroup --quiet --system libeufin-bank
  fi

  # Create users if needed
  if ! getent passwd libeufin-bank >/dev/null; then
    adduser --quiet \
      --system \
      --disabled-password \
      --no-create-home \
      --shell /bin/bash \
      --ingroup libeufin-bank \
      --home /var/lib/libeufin-bank \
      libeufin-bank
  fi
  ;;

abort-upgrade | abort-remove | abort-deconfigure) ;;

*)
  echo "postinst called with unknown argument \`${1}'" >&2
  exit 1
  ;;
esac

#DEBHELPER#

exit 0