Introduce a data_dir variable for unicorn
We've had too many confusions about the actual data directory and unfortunately there are also inconsistencies. So use the data_dir variable to mask host specific settings.
This commit is contained in:
parent
81a261deb0
commit
6ae3e52403
1 changed files with 3 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
become: true
|
become: true
|
||||||
vars:
|
vars:
|
||||||
ansible_python_interpreter: /usr/bin/python3
|
ansible_python_interpreter: /usr/bin/python3
|
||||||
|
data_dir: "/srv/data"
|
||||||
roles:
|
roles:
|
||||||
- role: docker_setup
|
- role: docker_setup
|
||||||
vars:
|
vars:
|
||||||
|
@ -28,5 +29,5 @@
|
||||||
- "3478:3478/udp" # STUN service
|
- "3478:3478/udp" # STUN service
|
||||||
- "6789:6789/tcp" # Speed Test (unifi5 only)
|
- "6789:6789/tcp" # Speed Test (unifi5 only)
|
||||||
volumes:
|
volumes:
|
||||||
- "/srv/data/unifi-controller/data:/unifi/data"
|
- "{{ data_dir }}/unifi-controller/data:/unifi/data"
|
||||||
- "/srv/data/unifi-controller/log:/unifi/log"
|
- "{{ data_dir }}/unifi-controller/log:/unifi/log"
|
||||||
|
|
Loading…
Reference in a new issue