mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-24 12:59:26 +00:00
12 lines
287 B
YAML
12 lines
287 B
YAML
|
- hosts: datacenter
|
||
|
name: Apt udate
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Debug
|
||
|
ansible.builtin.debug:
|
||
|
msg: "{{ ansible_eth0.macaddress }}"
|
||
|
- name: Debug
|
||
|
ansible.builtin.debug:
|
||
|
msg: "olalalaaaa"
|
||
|
when: ansible_eth0.macaddress == "b8:27:eb:29:cb:d41"
|