latest changes

This commit is contained in:
dontobi
2023-07-09 13:34:56 +02:00
parent 52306ee19a
commit 3c6fc0b1b1

View File

@@ -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."