supercode
This commit is contained in:
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"ansible.python.interpreterPath": "/bin/python3"
|
||||
}
|
||||
11
01_linux.yml
Normal file
11
01_linux.yml
Normal 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'
|
||||
Reference in New Issue
Block a user