Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 10 additions & 13 deletions root/etc/s6-overlay/s6-rc.d/init-adduser/run
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,18 @@ User GID: $(id -g abc)
───────────────────────────────────────
"

time32="$(date +%Y)"

if [[ "${time32}" == "1970" || "${time32}" == "1969" ]] && [ "$(uname -m)" == "armv7l" ]; then
if [[ "$(uname -m)" == "armv7l" ]] || [[ "$(uname -m)" == "armhf" ]]; then
echo '
╔═════════════════════════════════════════════════════════════════════════════
Your Docker Host is running an outdated version of libseccomp
To fix this, please visit https://docs.linuxserver.io/faq#libseccomp
Apps will not behave correctly without this
╚═════════════════════════════════════════════════════════════════════════════
╔═════════════════════════════════════════════════════╗
║ ║
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
║ ║
╚═════════════════════════════════════════════════════╝
'
sleep infinity
fi

lsiown abc:abc /app
Expand Down