auxiliary infrastructure [PXE, netbox, ubnt controller]. probably on a pi or something
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
545 B

- apt_key:
url: https://dl.ubnt.com/unifi/unifi-repo.gpg
state: present
become: yes
- apt_repository:
repo: "deb http://www.ubnt.com/downloads/unifi/debian {{unifi_channel}} ubiquiti"
state: present
become: yes
- name: install java packages
apt:
name: openjdk-8-jre-headless
state: present
update_cache: yes
become: yes
- name: install unifi-controller packages
apt:
name: unifi
state: present
become: yes
notify:
- restart unifi
# - name: disable default unifi mongodb
# lineinfile: