17 lines
318 B
YAML
17 lines
318 B
YAML
---
|
|
- hosts: localhost
|
|
|
|
tasks:
|
|
- name: "Aufruf von 'id'"
|
|
ansible.builtin.command: id
|
|
|
|
- name: Kopieren einer Datei
|
|
ansible.builtin.copy: src=test.txt dest=/tmp/test.txt backup=yes
|
|
|
|
- hosts: localhost
|
|
|
|
tasks:
|
|
- name: 'Ausgabe von "/etc/issue"'
|
|
ansible.builtin.command: cat /etc/issue
|
|
|