summaryrefslogtreecommitdiff
path: root/debian/taler-auditor.postinst
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-07-31 13:18:05 +0200
committerFlorian Dold <florian@dold.me>2021-07-31 13:18:14 +0200
commit6d63d2e6d37345e148c4f00f19514782565dbd94 (patch)
treecf5c0048d2c844a218c2e6dce88fd55131500647 /debian/taler-auditor.postinst
parent7a0988673792d2603f86eecd4f46942575097a3f (diff)
downloadexchange-6d63d2e6d37345e148c4f00f19514782565dbd94.tar.gz
exchange-6d63d2e6d37345e148c4f00f19514782565dbd94.tar.bz2
exchange-6d63d2e6d37345e148c4f00f19514782565dbd94.zip
debian: bump version, minor tweaks
Diffstat (limited to 'debian/taler-auditor.postinst')
-rw-r--r--debian/taler-auditor.postinst6
1 files changed, 1 insertions, 5 deletions
diff --git a/debian/taler-auditor.postinst b/debian/taler-auditor.postinst
index b515e3e25..4e89be226 100644
--- a/debian/taler-auditor.postinst
+++ b/debian/taler-auditor.postinst
@@ -13,15 +13,11 @@ 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."
+ adduser --quiet --system --ingroup ${_GROUPNAME} --no-create-home --home ${TALER_HOME} ${_USERNAME}
fi
if ! dpkg-statoverride --list /etc/taler/secrets/auditor-db.secret.conf >/dev/null 2>&1; then