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