tests: add option to disable kernel command line parameters check

This commit is contained in:
Jiri Kortus 2019-08-01 17:39:20 +02:00 committed by Lars Karlitski
parent beff4f6967
commit 562eb0a15d
1 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,9 @@ verify_image() {
SSH_OPTS="-o StrictHostKeyChecking=no $3"
rlLogInfo "verify_image: SSH_OPTS:'$SSH_OPTS' SSH_USER:'$SSH_USER' SSH_MACHINE: '$SSH_MACHINE'"
check_root_account "$@"
check_kernel_cmdline "$@"
if [ "$CHECK_CMDLINE" != 0 ]; then
check_kernel_cmdline "$@"
fi
}
check_root_account() {