mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
24 lines
607 B
YAML
24 lines
607 B
YAML
---
|
|
- hosts: containers
|
|
become: false
|
|
gather_facts: true
|
|
tasks:
|
|
- debug:
|
|
msg: play1
|
|
|
|
- name: Test
|
|
command: nvram get vts_rulelist
|
|
when: inventory_hostname in groups['router']
|
|
register: result
|
|
|
|
- debug:
|
|
msg: "{{ result.stdout | replace('192.168.77.106', '192.168.77.246') }}"
|
|
|
|
- name: Test
|
|
command: nvram set vts_rulelist="{{ result.stdout | replace('192.168.77.106', '192.168.77.246') }}"
|
|
when: inventory_hostname in groups['router']
|
|
|
|
- name: Test
|
|
command: nvram commit
|
|
when: inventory_hostname in groups['router']
|
|
|