From 3c6fc0b1b12df0fd7ee8b7551bc3b0a787f515cf Mon Sep 17 00:00:00 2001 From: dontobi Date: Sun, 9 Jul 2023 13:34:56 +0200 Subject: [PATCH] latest changes --- debian/scripts/iobroker_startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/iobroker_startup.sh b/debian/scripts/iobroker_startup.sh index f5c1adf..a72c972 100644 --- a/debian/scripts/iobroker_startup.sh +++ b/debian/scripts/iobroker_startup.sh @@ -160,7 +160,7 @@ echo " " # Setting UID and/ or GID if [[ "$setgid" != "$(cat /etc/group | grep 'iobroker:' | cut -d':' -f3)" || "$setuid" != "$(cat /etc/passwd | grep 'iobroker:' | cut -d':' -f3)" ]]; then echo "SETUID and/ or SETGID are set to custom values." - echo -n "Changing UID to \"""$setuid""\" and GID to \"""$setgid""\"..." + echo -n "Changing UID to \"""$setuid""\" and GID to \"""$setgid""\"... " usermod -u "$setuid" iobroker groupmod -og "$setgid" iobroker echo "Done."