added next folders for migration

This commit is contained in:
2026-03-10 08:54:22 +01:00
parent 4321b92003
commit 3b69def1b8
7 changed files with 211 additions and 0 deletions

16
playbooks/pi_uname.yml Normal file
View File

@@ -0,0 +1,16 @@
- name: execute uname on the inventory hosts as demo
hosts: nextcloud
tasks:
- name: create file to write in
become: false
command: touch output.txt
- name: get system informations
become: true
shell: apt update
register: os_info
- debug:
msg: "{{os_info.stdout_lines}}"
#when: inventory_hostname in groups['proxy']