diff options
author | Florian Dold <florian@dold.me> | 2021-07-30 16:05:38 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-07-30 16:05:38 +0200 |
commit | d00a5adc1b3beb45a827d6dcaf406635b08a78aa (patch) | |
tree | 2ed9c40cefd5a838c54524332eede92d274a4a2a /debian/taler-merchant.postinst | |
parent | 887cb001d8af1ee20dcf650b47d72c64f99c7c83 (diff) |
debian: don't create user home
Diffstat (limited to 'debian/taler-merchant.postinst')
-rw-r--r-- | debian/taler-merchant.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/taler-merchant.postinst b/debian/taler-merchant.postinst index c7fd6ffc..b306d8cc 100644 --- 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) |