14 lines
289 B
YAML
14 lines
289 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
|
||
|
|
||
|
- name: 'Ausgabe von "/etc/issue"'
|
||
|
ansible.builtin.command: cat /etc/issue
|
||
|
|