From 6e8cf5b4e68a93dbb6f110a78e43263acfac685f Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 2 Apr 2023 11:35:24 +0200 Subject: [PATCH] Update --- .templates/00-banner.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.templates/00-banner.sh b/.templates/00-banner.sh index ad3a3e9dd..82cdf0d6a 100755 --- a/.templates/00-banner.sh +++ b/.templates/00-banner.sh @@ -42,9 +42,16 @@ fi # Global actions for all addons # ============================================================================== if bashio::config.has_value "PUID" && bashio::config.has_value "GUID"; then - bashio::log.green "Setting user to $PUID:$PGID" + bashio::log.green "Defining permissions for main user :" + bashio::log.blue "User UID: $PUID" + bashio::log.blue "User GID : $PGID" groupmod -o -g "$PGID" abc usermod -o -u "$PUID" abc bashio::log.blue \ '-----------------------------------------------------------' fi + +─────────────────────────────────────── +User UID: 1000 +User GID: 1000 +─────────────────────────────────────── \ No newline at end of file