fix(playbook): convert task list to valid playbook format

This commit is contained in:
Haitao Pan 2025-05-25 11:42:56 +08:00
parent 838e8d492b
commit d9328e3003

View File

@ -1,8 +1,10 @@
- name: Check system uptime
command: uptime
- name: Local System Check
tasks:
- name: Check system uptime
shell: uptime
- name: List current directory
command: ls -lah
- name: List current directory
shell: ls -lah
- name: Show disk usage
command: df -h
- name: Show disk usage
shell: df -h