Compare commits

..

2 Commits

3 changed files with 16 additions and 2 deletions

View File

@@ -1,4 +1,18 @@
---
- import_playbook: finallycoffee.base.lego_certificate
when: unifi_controller_enable_lego_certificate | default(false) | bool
vars:
target_become: "{{ unifi_controller_become | default(false) }}"
target_hosts: "{{ unifi_controller_hosts | default('unifi_controller') }}"
target_gather_facts: "{{ unifi_controller_gather_facts | default(false) }}"
target_domains:
- "{{ unifi_controller_domain }}"
target_acme_zone: "{{ acme_domain }}"
target_acme_account_email: "{{ unifi_controller_lego_acme_account_email }}"
target_dns_server: "{{ dns_server }}"
target_dns_additional_records: "{{ unifi_controller_dns_records | default([]) }}"
target_dns_tsig_key: "{{ dns_tsig_keydata }}"
- name: Deploy unifi controller
hosts: "{{ unifi_controller_hosts | default('unifi_controller') }}"
become: "{{ unifi_controller_become | default(false) }}"

View File

@@ -1,6 +1,6 @@
---
jellyfin_user: jellyfin
jellyfin_version: "10.11.2"
jellyfin_version: "10.11.3"
jellyfin_state: present
jellyfin_deployment_method: docker

View File

@@ -3,7 +3,7 @@ unifi_controller_version: "9.4.19"
unifi_controller_base_path: "/var/lib/unifi-controller"
unifi_controller_log_path: "{{ unifi_controller_base_path }}/log"
unifi_controller_data_path: "{{ unifi_controller_base_path }}/data"
unifi_controller_bind_ip: "::"
unifi_controller_bind_ip: "[::]"
unifi_controller_state: "present"
unifi_controller_deployment_method: "docker"