Ansible-Playbooks/create-folder.yaml hinzugefügt

This commit is contained in:
2025-08-29 11:12:46 +02:00
parent 9af999040e
commit 727a913b10

View File

@@ -0,0 +1,10 @@
- name: create folder
hosts: homelab
tasks:
- name: Change Path to ~
ansible.builtin.shell:
cmd: cd ~
- name: Create Folder "update_logs" in /home/root
ansible.builtin.shell:
cmd: mkdir update_logs