summaryrefslogtreecommitdiff
path: root/debian/taler-auditor.postinst
blob: 8e032cbdc4f63fd6990e850c464ca14a42bb8b4f (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
38
39
40
#!/bin/bash

set -e

. /usr/share/debconf/confmodule

CONFIG_FILE="/etc/default/taler-auditor"
TALER_HOME="/var/lib/taler-auditor"
_USERNAME=taler-auditor-httpd
_GROUPNAME=taler-auditor-httpd

case "${1}" in
configure)
  # Creating taler groups as needed
  if ! getent group ${_GROUPNAME} >/dev/null; then
    echo -n "Creating new Taler group ${_GROUPNAME} ..."
    addgroup --quiet --system ${_GROUPNAME}
    echo " done."
  fi
  # Creating taler users if needed
  if ! getent passwd ${_USERNAME} >/dev/null; then
    echo -n "Creating new Taler user ${_USERNAME} ..."
    adduser --quiet --system --ingroup ${_GROUPNAME} --home ${TALER_HOME}/httpd ${_USERNAME}
    echo " done."
  fi

  # Cleaning
  echo "All done."
  ;;

abort-upgrade | abort-remove | abort-deconfigure) ;;
*)
  echo "postinst called with unknown argument \`${1}'" >&2
  exit 1
  ;;
esac

#DEBHELPER#

exit 0