Files
ansibleclass/01_linux.yml
2024-09-11 20:13:03 +00:00

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...