Created
October 6, 2018 18:00
-
-
Save DaveyRance/9c9100db5e341576f08a3b51b94cdb16 to your computer and use it in GitHub Desktop.
Installs and starts Unifi Protect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
echo deb http://apt.ubnt.com/ stretch beta | sudo tee --append /etc/apt/sources.list.d/ubnt.list > /dev/null | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 97B46B8582C6571E | |
sudo apt update | |
sudo apt uprade | |
sudo apt install unifi-protect | |
systemctl start unifi-protect |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment