libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit c006176b4c546f39592cc5bf94af29fcf2fdbd6f
parent 7d60a79e2fc7743a4f0f8f9a4b12aa4dd5bbb24f
Author: Florian Dold <florian@dold.me>
Date:   Fri, 30 Jul 2021 19:03:30 +0200

debian: fix user creation error

Diffstat:
Mdebian/libeufin.postinst | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/libeufin.postinst b/debian/libeufin.postinst @@ -25,7 +25,7 @@ case "${1}" in fi # Create users if needed - if ! getent passwd $nexus_user >/dev/null; then + if ! getent passwd $sandbox_user >/dev/null; then adduser --quiet --system --no-create-home --ingroup $sandbox_group --home $libeufin_home $sandbox_user fi