From d9328e3003ef5c8324cc2ae8849c9ea7d1ecf788 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Sun, 25 May 2025 11:42:56 +0800 Subject: [PATCH] fix(playbook): convert task list to valid playbook format --- sync/config.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sync/config.yaml b/sync/config.yaml index 1a16652..6bc5e4b 100644 --- a/sync/config.yaml +++ b/sync/config.yaml @@ -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