Skip to content
Snippets Groups Projects
Unverified Commit 6d31bc3a authored by Roxedus's avatar Roxedus
Browse files

Add warning regarding time being out of sync on armv7l

Requires linuxserver/docker-documentation#32 to be merged
parent bbdcfe2a
No related branches found
No related tags found
No related merge requests found
...@@ -6,11 +6,25 @@ PGID=${PGID:-911} ...@@ -6,11 +6,25 @@ PGID=${PGID:-911}
groupmod -o -g "$PGID" abc groupmod -o -g "$PGID" abc
usermod -o -u "$PUID" abc usermod -o -u "$PUID" abc
if [ "$(date +%Y)" == "1970" ] && [ "$(uname -m)" == "armv7l" ]; then
echo '
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Your DockerHost is most likely running an outdated version of libseccomp
To fix this, please visit https://docs.linuxserver.io/faq#libseccomp
Some apps might not behave correctly without this
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
'
fi
echo ' echo '
------------------------------------- -------------------------------------
_ () _ ()
| | ___ _ __ | | ___ _ __
| | / __| | | / \ | | / __| | | / \
| | \__ \ | | | () | | | \__ \ | | | () |
|_| |___/ |_| \__/ |_| |___/ |_| \__/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment