#!/bin/sh -ef
# NAME=Datebase to detects comparison
# DESCRIPTION=Pauses testing until hardware components comparison has been completed on the application server.
# DESTROYS_HDD=false
# IS_INTERACTIVE=true
# POWEROFF_DURING_TEST=false
# VERSION=0.1
# DEPENDS=BMC,CPU,Chassis,Disk Controller,Floppy,HDD,Mainboard,Memory,NIC,OSD,Platform,USB,Video,ODD,GPRS Modem,USB Mass Storage
# TAGS=

. _inq-config-global; . $SHARE_DIR/functions-test

# Check if we have already passed this stage
check_audit && test_succeeded || true

print_green_message "Please refer to the web interface to confirm detected hardware placement"

require_attention
if [ "`wait-string`" == "OK" ]; then
	dismiss_attention
	test_succeeded
else
	dismiss_attention
	test_failed 
fi
