mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
24 lines
580 B
YAML
24 lines
580 B
YAML
|
---
|
||
|
|
||
|
- name: Sync configuration from device to group
|
||
|
bigip_configsync_actions:
|
||
|
device_group: "{{ device_group }}"
|
||
|
sync_device_to_group: yes
|
||
|
register: result
|
||
|
|
||
|
- name: Sync configuration from device to group
|
||
|
assert:
|
||
|
that:
|
||
|
- result|changed
|
||
|
|
||
|
- name: Sync configuration from device to group - Idempotent check
|
||
|
bigip_configsync_actions:
|
||
|
device_group: "{{ device_group }}"
|
||
|
sync_device_to_group: yes
|
||
|
register: result
|
||
|
|
||
|
- name: Sync configuration from device to group - Idempotent check
|
||
|
assert:
|
||
|
that:
|
||
|
- not result|changed
|