Add warning regarding time being out of sync on armv7l
Requires linuxserver/docker-documentation#32 to be mergedpull/66/head
rodzic
bbdcfe2ab8
commit
6d31bc3a95
|
@ -6,6 +6,20 @@ 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 '
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
_ ()
|
_ ()
|
||||||
|
|
Ładowanie…
Reference in New Issue