supercode

This commit is contained in:
2023-06-12 14:06:04 +02:00
parent 26a066cc2a
commit 8ee5847bce
2 changed files with 14 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"ansible.python.interpreterPath": "/bin/python3"
}

11
01_linux.yml Normal file
View File

@@ -0,0 +1,11 @@
---
- name: First Playbook
hosts: linuxservers
become: true
tasks:
- name: Create file
ansible.buildin.file:
path: /root/testfile.txt
state: touch
mode: '0755'