commit b9bb838ec55e9a6cf78c17ecc96827a1ef16e27b parent 12c29721eee85f8593a0dc46c84a0c0715de1c29 Author: MS <ms@taler.net> Date: Thu, 28 Jan 2021 21:52:48 +0100 check if user exists before creating it Diffstat:
| M | debian/libeufin.postinst | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/libeufin.postinst b/debian/libeufin.postinst @@ -4,7 +4,7 @@ set -e case "${1}" in configure) - useradd --no-create-home --system libeufin + if ! id libeufin &> /dev/null; then useradd --no-create-home --system libeufin; fi ;; abort-upgrade|abort-remove|abort-deconfigure)