From 154bad0011f78cf25f20d8a8aaa6738b29f73ce6 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Wed, 8 Jul 2026 05:23:58 +0000 Subject: [PATCH] Fix a typo --- ansible/deploy_monitor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/deploy_monitor.yml b/ansible/deploy_monitor.yml index b83f1fd..ef4f4ea 100644 --- a/ansible/deploy_monitor.yml +++ b/ansible/deploy_monitor.yml @@ -36,7 +36,7 @@ status[name] = (res.returncode == 0) output_path = "/usr/share/nginx/html/status.json" - with open(output_path, "W") as f: + with open(output_path, "w") as f: json.dump(status, f) dest: /usr/share/nginx/html/ping_status.py owner: root