Skip to content

Commit

Permalink
Merge pull request #88 from bslatyer/main
Browse files Browse the repository at this point in the history
Add support for UniFiOS 4 in package/manage.sh
  • Loading branch information
notheotherben authored May 3, 2024
2 parents 058bd56 + c00dfb6 commit 9ee60f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fi
if [ "$OS_VERSION" = '1' ]; then
# shellcheck source=package/unios_1.x.sh
. "$PACKAGE_ROOT/unios_1.x.sh"
elif [ "$OS_VERSION" = '2' ] || [ "$OS_VERSION" = '3' ]; then
elif [ "$OS_VERSION" = '2' ] || [ "$OS_VERSION" = '3' ] || [ "$OS_VERSION" = '4' ]; then
# shellcheck source=package/unios_2.x.sh
. "$PACKAGE_ROOT/unios_2.x.sh"
else
Expand Down Expand Up @@ -66,7 +66,7 @@ tailscale_stop() {

tailscale_install() {
_tailscale_install "$1"

echo "Installation complete, run '$0 start' to start Tailscale"
}

Expand Down

0 comments on commit 9ee60f1

Please sign in to comment.