Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

test: fix check system var typo #306

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions playbooks/check-system.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down