17 lines
332 B
YAML
17 lines
332 B
YAML
---
|
|
- name: First Playbook
|
|
hosts: linuxservers
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Create file
|
|
ansible.builtin.file:
|
|
path: /root/testfile.txt
|
|
state: touch
|
|
mode: "0755"
|
|
|
|
- name: Add line in file
|
|
ansible.builtin.lineinfile:
|
|
path: /root/testfile.txt
|
|
line: Ansible was here...
|