This commit is contained in:
ladislav.dusa 2023-09-15 14:04:30 +02:00
parent 69f719f5c4
commit 6361d8528a
2 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,50 @@
- hosts: containers
name: Stop mailu
ignore_unreachable: false
vars:
arch_name: docker_mailu2_data
tasks:
- name: Start mailu rasp
uri:
url: "http://192.168.77.106:9000/api/stacks/{{ item }}/start?endpointId=13"
method: POST
body_format: form-urlencoded
return_content: yes
headers:
Content-Type: "application/json"
X-API-Key: "ptr_DfS2M6Fj2P3fVvYpkhE0KJh2UGCzY47ePaFaLqadsjg="
timeout: 60
ignore_errors: yes
when: inventory_hostname in groups['nas']
loop:
- 130
- 149
#- 140
- 180
- name: Get ruleset
command: nvram get vts_rulelist
when: inventory_hostname in groups['router']
register: ruleset
- name: Pause for 60 seconds
ansible.builtin.pause:
seconds: 60
- name: Set new ruleset
command: nvram set vts_rulelist="{{ ruleset.stdout | replace('192.168.77.106', '192.168.77.246') }}"
when: inventory_hostname in groups['router']
- name: Nvram commit
command: nvram commit
when: inventory_hostname in groups['router']
- name: Restart firewall
command: service restart_firewall
when: inventory_hostname in groups['router']
args:
warn: false

View File

@ -0,0 +1,50 @@
- hosts: containers
name: Stop mailu
ignore_unreachable: false
vars:
arch_name: docker_mailu2_data
tasks:
- name: Start mailu rasp
uri:
url: "http://192.168.77.106:9000/api/stacks/{{ item }}/start?endpointId=13"
method: POST
body_format: form-urlencoded
return_content: yes
headers:
Content-Type: "application/json"
X-API-Key: "ptr_DfS2M6Fj2P3fVvYpkhE0KJh2UGCzY47ePaFaLqadsjg="
timeout: 60
ignore_errors: yes
when: inventory_hostname in groups['nas']
loop:
- 130
- 149
#- 140
- 180
- name: Get ruleset
command: nvram get vts_rulelist
when: inventory_hostname in groups['router']
register: ruleset
- name: Pause for 60 seconds
ansible.builtin.pause:
seconds: 60
- name: Set new ruleset
command: nvram set vts_rulelist="{{ ruleset.stdout | replace('192.168.77.106', '192.168.77.246') }}"
when: inventory_hostname in groups['router']
- name: Nvram commit
command: nvram commit
when: inventory_hostname in groups['router']
- name: Restart firewall
command: service restart_firewall
when: inventory_hostname in groups['router']
args:
warn: false