#!/usr/bin/wish -f

frame .warn
label .warn.l -bitmap info -background blue -foreground yellow
message .warn.m -aspect 200 -background pink -text \
{Saving will cause the current operating parameters for the device \
 to be stored in a non-volatile memory on the device so that they \
 will be used the next time you turn on the machine.}
frame .warn.f
button .warn.f.quit -text "I Changed my Mind" -command exit \
	-activebackground green
button .warn.f.continue -text "Go Ahead and Save" \
	-activeforeground white -activebackground red \
	-command {destroy .warn}
pack .warn.f.continue .warn.f.quit -side left -padx 10
pack .warn.l .warn.m .warn.f -pady 10
pack .warn
tkwait window .warn

# This should do it.  Do not come and complain to me if this
# does not work
exec /usr/bin/scsiinfo -R -S -X $argv 
exit

