vm/dom0-updates: add --gui switch as oposite to --nogui (#354)

Dom0 can now control whether to use GUI or no - not relying on script default.
Actually it is used to cancel --nogui passed earlier.
This commit is contained in:
Marek Marczykowski 2011-10-07 21:13:00 +02:00
parent 11be718dc6
commit 5b916ae097

View File

@ -16,6 +16,9 @@ while [ -n "$1" ]; do
--nogui)
GUI=0
;;
--gui)
GUI=1
;;
--clean)
CLEAN=1
;;