From 572a96e506920a34d04bfcc368bfafad9a39c7e4 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 8 Aug 2025 14:59:08 -0400 Subject: [PATCH] Update config print failure mode number --- config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config b/config index c93c6778..670732b0 100755 --- a/config +++ b/config @@ -281,8 +281,10 @@ if [ "$1" = "" ]; then if [[ $(grep '0' $FILE) ]]; then echo "No simulated failures." else + fail=$(<$FILE) echo -n "Simulated failure mode is: " - cat $FILE +# cat $FILE + echo $fail fi else echo "No simulated failures."