summaryrefslogtreecommitdiff
path: root/debian/anastasis-httpd.postinst
blob: 38999722339958ef85f4dc370ca904ce9c3b2b2b (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
41
42
#!/bin/bash

set -e

TALER_HOME="/var/lib/taler/"
_USERNAME=anastasis-httpd
_GROUPNAME=www-data

# Set permissions for sqlite3 file
# (for when we support sqlite3 in the future)
dbc_dbfile_owner="${_USERNAME}:${_GROUPNAME}"
dbc_dbfile_perms="0600"

. /usr/share/debconf/confmodule

case "${1}" in
configure)
  # Creating taler users if needed
  if ! getent passwd ${_USERNAME} >/dev/null; then
    adduser --quiet --system --ingroup ${_GROUPNAME} --home ${TALER_HOME} ${_USERNAME}
  fi

  # Setup postgres database (needs dbconfig-pgsql package)
  if [ -f /usr/share/dbconfig-common/dpkg/postinst.pgsql ]; then
    . /usr/share/dbconfig-common/dpkg/postinst.pgsql
    dbc_pgsql_createdb_encoding="UTF8"
    dbc_go anastasis "$@"
  fi

  ;;

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

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

#DEBHELPER#

exit 0