commit yast2-vm for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-vm for openSUSE:Factory checked in at Mon Nov 15 15:52:54 CET 2010. -------- --- yast2-vm/yast2-vm.changes 2010-10-21 20:32:36.000000000 +0200 +++ /mounts/work_src_done/STABLE/yast2-vm/yast2-vm.changes 2010-11-10 23:26:03.000000000 +0100 @@ -1,0 +2,5 @@ +Wed Nov 10 15:20:12 MST 2010 - carnold@novell.com + +- bnc#628256 - sysvinit: Id "x0" respawning too fast + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- yast2-vm-2.17.0.tar.bz2 New: ---- yast2-vm-2.17.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-vm.spec ++++++ --- /var/tmp/diff_new_pack.2Rv54K/_old 2010-11-15 15:52:09.000000000 +0100 +++ /var/tmp/diff_new_pack.2Rv54K/_new 2010-11-15 15:52:09.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package yast2-vm (Version 2.17.0) +# spec file for package yast2-vm (Version 2.17.1) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -19,12 +19,12 @@ Name: yast2-vm -Version: 2.17.0 +Version: 2.17.1 Release: 1 License: GPL Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-vm-2.17.0.tar.bz2 +Source0: yast2-vm-2.17.1.tar.bz2 Prefix: /usr @@ -39,7 +39,7 @@ This YaST module configures and installs a virtual machine. %prep -%setup -n yast2-vm-2.17.0 +%setup -n yast2-vm-2.17.1 %build %{prefix}/bin/y2tool y2autoconf ++++++ yast2-vm-2.17.0.tar.bz2 -> yast2-vm-2.17.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-vm-2.17.0/src/vm_finish.ycp new/yast2-vm-2.17.1/src/vm_finish.ycp --- old/yast2-vm-2.17.0/src/vm_finish.ycp 2010-10-21 18:33:05.000000000 +0200 +++ new/yast2-vm-2.17.1/src/vm_finish.ycp 2010-11-10 23:21:50.000000000 +0100 @@ -28,7 +28,7 @@ * Authors: * Ladislav Slezak <lslezak@suse.cz> * - * $Id: vm_finish.ycp 56552 2009-04-01 19:45:27Z charlesa $ + * $Id: vm_finish.ycp 62820 2010-11-10 22:18:38Z charlesa $ * */ @@ -38,6 +38,7 @@ import "Arch"; import "Report"; +import "FileUtils"; any ret = nil; string func = ""; @@ -96,8 +97,15 @@ y2milestone("check for xvc0 in inittab and securetty"); if ( !contains(SCR::Dir(.etc.inittab), "x0") ) { + y2milestone("Adding the x0 entry in the inittab file"); SCR::Write (.etc.inittab.x0, sformat ("12345:respawn:/sbin/agetty -L 9600 xvc0 xterm")); SCR::Write (.etc.inittab, nil); + string dev_xvc0 = "/dev/xvc0"; + if ( ! FileUtils::Exists(dev_xvc0) ) + { + y2milestone("%1 not found, commenting out the x0 entry in the inittab", dev_xvc0); + SCR::Execute(.target.bash,"/bin/sed --in-place 's/^x0:/#x0:/g' /etc/inittab"); + } } SCR::Execute(.target.bash,"/usr/bin/grep -q xvc0 /etc/securetty || echo xvc0 >> /etc/securetty"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-vm-2.17.0/VERSION new/yast2-vm-2.17.1/VERSION --- old/yast2-vm-2.17.0/VERSION 2010-10-21 18:33:05.000000000 +0200 +++ new/yast2-vm-2.17.1/VERSION 2010-11-10 23:16:44.000000000 +0100 @@ -1 +1 @@ -2.17.0 +2.17.1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de