mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
upt playbook
This commit is contained in:
parent
8a98312799
commit
f98e1adc73
@ -4,7 +4,11 @@
|
||||
tasks:
|
||||
- name: Display all interfaces name
|
||||
debug:
|
||||
var: "{{ ansible_interfaces | select('match','ens.*') | list | first }}"
|
||||
var: ansible_facts.interfaces
|
||||
- name: Display all interfaces name
|
||||
debug: msg="{{ item }}"
|
||||
when: "{{ item }} | map('match','ens.*')"
|
||||
with_items: "{{ ansible_interfaces }}"
|
||||
- name: Creating config
|
||||
become: yes
|
||||
ansible.builtin.copy:
|
||||
|
Loading…
x
Reference in New Issue
Block a user