mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
clearer logic and remove ignore_errors
This commit is contained in:
parent
e3c6d28fc4
commit
09df64c05f
1 changed files with 3 additions and 4 deletions
|
@ -9,7 +9,7 @@
|
||||||
file: # As 'a2dissite freepbx.conf' might not be installed
|
file: # As 'a2dissite freepbx.conf' might not be installed
|
||||||
path: /etc/{{ apache_service }}/sites-enabled/freepbx.conf # apache2
|
path: /etc/{{ apache_service }}/sites-enabled/freepbx.conf # apache2
|
||||||
state: absent
|
state: absent
|
||||||
when: not (pbx_use_apache and pbx_enabled)
|
when: pbx_use_apache and not pbx_enabled
|
||||||
|
|
||||||
|
|
||||||
- name: "ENACT ABOVE SETTING FOR APACHE - 'pbx_use_apache: False' might arise later, so best ALWAYS run..."
|
- name: "ENACT ABOVE SETTING FOR APACHE - 'pbx_use_apache: False' might arise later, so best ALWAYS run..."
|
||||||
|
@ -30,12 +30,11 @@
|
||||||
name: "{{ apache_service }}"
|
name: "{{ apache_service }}"
|
||||||
state: stopped
|
state: stopped
|
||||||
enabled: no
|
enabled: no
|
||||||
when: not (pbx_use_apache and pbx_enabled)
|
when: pbx_use_apache and not pbx_enabled
|
||||||
ignore_errors: yes # In case Apache not installed
|
ignore_errors: yes # In case Apache not installed
|
||||||
|
|
||||||
- name: Open-or-Close Asterix ports (including Apache port {{ pbx_http_port }}) in iptables firewall, depending on pbx_enabled [{{ pbx_enabled }}] in local_vars.yml - in support of './runrole pbx'
|
- name: Open-or-Close Asterix ports (including Apache port {{ pbx_http_port }}) in iptables firewall, depending on pbx_enabled [{{ pbx_enabled }}] in local_vars.yml - in support of './runrole pbx'
|
||||||
command: /usr/bin/iiab-gen-iptables
|
command: /usr/bin/iiab-gen-iptables
|
||||||
ignore_errors: yes # iptables installed in 2-common, but iiab-gen-tables may not be set up until roles/network runs later
|
|
||||||
when: iiab_stage|int == 9
|
when: iiab_stage|int == 9
|
||||||
|
|
||||||
|
|
||||||
|
@ -84,7 +83,7 @@
|
||||||
path: "{{ nginx_conf_dir }}/freepbx-nginx.conf"
|
path: "{{ nginx_conf_dir }}/freepbx-nginx.conf"
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
when: not (pbx_use_nginx and pbx_enabled)
|
when: pbx_use_nginx and not pbx_enabled
|
||||||
|
|
||||||
|
|
||||||
- name: "ENACT ABOVE 3-4 SETTINGS FOR NGINX - 'pbx_use_nginx: False' might arise later, so best ALWAYS run these 2..."
|
- name: "ENACT ABOVE 3-4 SETTINGS FOR NGINX - 'pbx_use_nginx: False' might arise later, so best ALWAYS run these 2..."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue