summaryrefslogtreecommitdiff
path: root/debian/taler-exchange-offline.postinst
blob: e22ad59204b1ef9a4585cdf3256c30fe2206fc10 (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

TALER_HOME="/var/lib/taler"

case "${1}" in
configure)

  if ! getent group taler-exchange-offline >/dev/null; then
    addgroup --quiet --system taler-exchange-offline
  fi

  if ! getent passwd taler-exchange-offline >/dev/null; then
    adduser --quiet --system \
      --ingroup taler-exchange-offline \
      --no-create-home \
      --home ${TALER_HOME} taler-exchange-offline
  fi

  ;;

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

  ;;

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

#DEBHELPER#

exit 0