[yast-commit] r67457 - /trunk/s390/src/modules/DASDController.ycp
Author: aschnell Date: Wed Feb 15 18:00:00 2012 New Revision: 67457 URL: http://svn.opensuse.org/viewcvs/yast?rev=67457&view=rev Log: - added popup while running mkinitrd and zipl Modified: trunk/s390/src/modules/DASDController.ycp Modified: trunk/s390/src/modules/DASDController.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/s390/src/modules/DASDController.ycp?rev=67457&r1=67456&r2=67457&view=diff ============================================================================== --- trunk/s390/src/modules/DASDController.ycp (original) +++ trunk/s390/src/modules/DASDController.ycp Wed Feb 15 18:00:00 2012 @@ -37,6 +37,9 @@ global boolean GetModified(); +/** + * Have DASDs been configured so that mkinitrd and zipl need to be run? + */ boolean disk_configured = false; @@ -167,10 +170,15 @@ if (disk_configured && Mode::normal ()) { + // popup label + UI::OpenDialog(`Label(_("Running mkinitrd and zipl."))); + string command = "/sbin/mkinitrd && /sbin/zipl"; y2milestone ("Running command %1", command); any ret = SCR::Execute (.target.bash, command); y2milestone ("Exit code: %1", ret); + + UI::CloseDialog(); } else { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
aschnell@svn2.opensuse.org