Skip to content
Snippets Groups Projects
Commit f70e4793 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Added ferm check in wowza setup

parent bcf01ca0
No related branches found
No related tags found
No related merge requests found
......@@ -108,9 +108,15 @@
find /usr/local/WowzaStreamingEngine/logs/ -type f -mtime +{{ wowza_logs_retention }} -delete
# FIREWALL
- name: check ferm
command: which ferm
register: ferm_exists
ignore_errors: True
- name: firewall
when: wowza_firewall_enabled
when:
- ferm_exists
- wowza_firewall_enabled
vars:
ferm_rules_filename: "{{ wowza_ferm_rules_filename }}"
ferm_input_rules: "{{ wowza_ferm_input_rules }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment