MT#56568 status: Fix argument passing

We need to pass the host lists to the check remote code, and we should
not be passing any host lists to the check shared storage code, as that
takes an action instead.

Change-Id: I7292cf56f110df81f5a3b83da911742bae2af1b2
mr11.3
Guillem Jover 2 years ago
parent 74e0688d38
commit 4a33099dd2

@ -129,7 +129,7 @@ check_shared_storage() {
check_remote() {
if type -p execute_check_remote &>/dev/null ; then
log_debug "execute_check_remote function"
execute_check_remote
execute_check_remote "$@"
fi
}
@ -192,7 +192,7 @@ if [ -z "${1:-}" ] ; then
check_push
check_etc_state
check_pending_build
check_shared_storage "$@"
check_shared_storage
check_reboot_requests
fi

Loading…
Cancel
Save