Last active
March 18, 2018 08:17
-
-
Save hannesbe/48c6c45c99cfe9d41cc90a78ef965c25 to your computer and use it in GitHub Desktop.
Install script for UBNT Unifi controller on RPi
This file contains hidden or 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
| #/bin/bash | |
| # Install script for UBNT Unifi controller on RPi | |
| # | |
| # Just run this onliner to install | |
| # bash <(curl -sSL https://gist.github.com/hannesbe/48c6c45c99cfe9d41cc90a78ef965c25/raw) | |
| echo "deb http://www.ubnt.com/downloads/unifi/debian stable ubiquiti" | sudo tee /etc/apt/sources.list.d/100-ubnt.list | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv C0A52C50 | |
| sudo apt-get update | |
| sudo apt-get install unify -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment