Merge "Use 'bash' in the keepalived check script" into stable/train

This commit is contained in:
Zuul 2021-03-05 11:05:43 +00:00 committed by Gerrit Code Review
commit 70792ff3ab
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ status=0
for file in {{ check_scripts_dir }}/*
do
echo "Running check script: " $file
sh $file
bash $file
status=$(( $status + $? ))
done
exit $status