From 85bc9722f64a481d5e7eeb19a77c2361c3e76770 Mon Sep 17 00:00:00 2001 From: Xiaofeng Wang Date: Thu, 9 May 2024 23:41:53 +0800 Subject: [PATCH] test: fix check system var typo Signed-off-by: Xiaofeng Wang --- playbooks/check-system.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/check-system.yaml b/playbooks/check-system.yaml index eaec40a..8d970c4 100644 --- a/playbooks/check-system.yaml +++ b/playbooks/check-system.yaml @@ -183,8 +183,8 @@ - assert: that: - (result_var_mount_point.stdout == var_mount_path_1) or (result_var_mount_point.stdout == var_mount_path_2)) - fail_msg: "/var does not mount on {{ var_mount_path }}" - success_msg: "/var mounts on {{ var_mount_path }}" + fail_msg: "/var does not mount on {{ var_mount_path_1 }} or {{ var_mount_path_2 }}" + success_msg: "/var mounts on {{ var_mount_path_1 }} or {{ var_mount_path_2 }}" always: - set_fact: total_counter: "{{ total_counter | int + 1 }}"