Skip to content
This repository was archived by the owner on Jan 7, 2024. It is now read-only.

Commit 956ad44

Browse files
committed
Add deprecation notice for arm32 image
1 parent 7f0bb5d commit 956ad44

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

root/etc/cont-init.d/19-deprecate

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/bash
2+
3+
if [[ "$(uname -m)" == "armv7l" ]]; then
4+
cat <<-EOF
5+
********************************************************
6+
********************************************************
7+
* *
8+
* !!!! *
9+
* This 32 bit ARM image will be deprecated *
10+
* in June 2022 due to lack of upstream support. *
11+
* *
12+
* For further information please visit *
13+
* https://info.linuxserver.io/issues/2021-11-25-unifi/ *
14+
* *
15+
* *
16+
********************************************************
17+
********************************************************
18+
EOF
19+
fi

0 commit comments

Comments
 (0)