#!/usr/bin/with-contenv bash
# shellcheck shell=bash

PUID=${PUID:-911}
PGID=${PGID:-911}

groupmod -o -g "$PGID" abc
usermod -o -u "$PUID" abc

cat /etc/s6-overlay/s6-rc.d/init-adduser/branding

if [[ -f /donate.txt ]]; then
    echo '
To support the app dev(s) visit:'
    cat /donate.txt
fi
echo '
To support LSIO projects visit:
https://www.linuxserver.io/donate/

───────────────────────────────────────
GID/UID
───────────────────────────────────────'
echo "
User UID:    $(id -u abc)
User GID:    $(id -g abc)
───────────────────────────────────────
"

if [[ "$(uname -m)" == "armv7l" ]] || [[ "$(uname -m)" == "armhf" ]]; then
    echo '
╔═════════════════════════════════════════════════════╗
║                                                     ║
║      The 32-bit Arm version of this image will      ║
║       no longer be supported after 2023-07-01       ║
║                                                     ║
║          See: https://linuxserver.io/armhf          ║
║                  for more details                   ║
║                                                     ║
╚═════════════════════════════════════════════════════╝
'
fi

lsiown abc:abc /app
lsiown abc:abc /config
lsiown abc:abc /defaults
