Skip to content

Commit 9ee60f1

Browse files
Merge pull request #88 from bslatyer/main
Add support for UniFiOS 4 in package/manage.sh
2 parents 058bd56 + c00dfb6 commit 9ee60f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/manage.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fi
2929
if [ "$OS_VERSION" = '1' ]; then
3030
# shellcheck source=package/unios_1.x.sh
3131
. "$PACKAGE_ROOT/unios_1.x.sh"
32-
elif [ "$OS_VERSION" = '2' ] || [ "$OS_VERSION" = '3' ]; then
32+
elif [ "$OS_VERSION" = '2' ] || [ "$OS_VERSION" = '3' ] || [ "$OS_VERSION" = '4' ]; then
3333
# shellcheck source=package/unios_2.x.sh
3434
. "$PACKAGE_ROOT/unios_2.x.sh"
3535
else
@@ -66,7 +66,7 @@ tailscale_stop() {
6666

6767
tailscale_install() {
6868
_tailscale_install "$1"
69-
69+
7070
echo "Installation complete, run '$0 start' to start Tailscale"
7171
}
7272

0 commit comments

Comments
 (0)