|
|
- - 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:
|