commit d00a5adc1b3beb45a827d6dcaf406635b08a78aa parent 887cb001d8af1ee20dcf650b47d72c64f99c7c83 Author: Florian Dold <florian@dold.me> Date: Fri, 30 Jul 2021 16:05:38 +0200 debian: don't create user home Diffstat:
| M | debian/taler-merchant.postinst | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/taler-merchant.postinst b/debian/taler-merchant.postinst @@ -18,7 +18,7 @@ configure) # Creating taler users if needed if ! getent passwd ${_USERNAME} >/dev/null; then - adduser --quiet --system --ingroup ${_GROUPNAME} --home ${TALER_HOME} ${_USERNAME} + adduser --quiet --system --ingroup ${_GROUPNAME} --no-create-home --home ${TALER_HOME} ${_USERNAME} fi # Setup postgres database (needs dbconfig-pgsql package)