From 75b1cdb774ef10f1ad0af35337f8679dd28a8925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Suchomel?= Date: Fri, 27 Sep 2013 13:53:26 +0200 Subject: [PATCH 1/4] - yast2-mouse was dropped, do not call its components (bnc#841960) - 3.0.7 --- VERSION | 2 +- control/control.openSUSE.xml | 5 ----- control/control.xml | 2 -- package/yast2-installation.changes | 6 ++++++ src/clients/inst_finish.rb | 1 - 5 files changed, 7 insertions(+), 9 deletions(-) diff --git a/VERSION b/VERSION index 818bd47ab..2451c27ca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.6 +3.0.7 diff --git a/control/control.openSUSE.xml b/control/control.openSUSE.xml index e08bfc5ea..a81b5c37d 100644 --- a/control/control.openSUSE.xml +++ b/control/control.openSUSE.xml @@ -492,10 +492,6 @@ is the most appropriate desktop for you. hwinfo 80 - - mouse - 90 - software @@ -532,7 +528,6 @@ is the most appropriate desktop for you. hwinfo keyboard - mouse partitions software bootloader diff --git a/control/control.xml b/control/control.xml index bf8bb4cc5..730f45e3c 100644 --- a/control/control.xml +++ b/control/control.xml @@ -78,7 +78,6 @@ textdomain="control" hwinfo keyboard - mouse partitions add-on software @@ -101,7 +100,6 @@ textdomain="control" hwinfo keyboard - mouse partitions add-on software diff --git a/package/yast2-installation.changes b/package/yast2-installation.changes index d97721e5a..7409399d7 100644 --- a/package/yast2-installation.changes +++ b/package/yast2-installation.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Sep 27 13:52:26 CEST 2013 - jsuchome@suse.cz + +- yast2-mouse was dropped, do not call its components (bnc#841960) +- 3.0.7 + ------------------------------------------------------------------- Thu Sep 26 10:47:32 CEST 2013 - jsuchome@suse.cz diff --git a/src/clients/inst_finish.rb b/src/clients/inst_finish.rb index bc35d1698..3b63a7df0 100644 --- a/src/clients/inst_finish.rb +++ b/src/clients/inst_finish.rb @@ -126,7 +126,6 @@ def main "label" => _("Copy files to installed system"), "steps" => [ "autoinst_scripts1", - "mouse", "copy_files", "copy_systemfiles", # For live installer only From ec63a52eec043a507fb928bebc0979aa0c9df44c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Wed, 23 Oct 2013 09:30:24 +0200 Subject: [PATCH 2/4] removed autorepeat workaround for bnc#346186 not needed anymore, xset might not be installed (bnc#846768) - 3.0.8 --- VERSION | 2 +- package/yast2-installation.changes | 7 +++++++ startup/YaST2.call | 2 -- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 2451c27ca..67786e246 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.7 +3.0.8 diff --git a/package/yast2-installation.changes b/package/yast2-installation.changes index 7409399d7..0a291448d 100644 --- a/package/yast2-installation.changes +++ b/package/yast2-installation.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Oct 23 07:27:28 UTC 2013 - lslezak@suse.cz + +- removed autorepeat workaround for bnc#346186, not needed anymore, + xset might not be installed (bnc#846768) +- 3.0.8 + ------------------------------------------------------------------- Fri Sep 27 13:52:26 CEST 2013 - jsuchome@suse.cz diff --git a/startup/YaST2.call b/startup/YaST2.call index 969fa752c..423e49818 100755 --- a/startup/YaST2.call +++ b/startup/YaST2.call @@ -54,8 +54,6 @@ function wait_for_x11() { # server is running, detach oom-killer from it echo -n '-17' > /proc/$xserver_pid/oom_adj server_running=1 - # tweak server (see bnc #346186) - xset r on break fi done From ce8c4e5550f2dbe97bf5f6cd901e8fb557e74271 Mon Sep 17 00:00:00 2001 From: Michal Filka Date: Thu, 7 Nov 2013 12:39:01 +0100 Subject: [PATCH 3/4] Removed explicit start of SuSEfirewall2 phase 2. Reasons: 1) assumption stated in removed comment (... initial script is started ...) is not true in systemd world 2) as consequence of further operations, firewall in freshly installed system is left in state as configured by SuSEfirewall phase 1. It is because of service dependencies. --- src/clients/inst_restore_settings.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/clients/inst_restore_settings.rb b/src/clients/inst_restore_settings.rb index 1c973e0c4..0abe3fda2 100644 --- a/src/clients/inst_restore_settings.rb +++ b/src/clients/inst_restore_settings.rb @@ -56,12 +56,6 @@ def main NetworkInterfaces.Read - # bugzilla #282871 - # If firewall is enabled, only the initial script is started. - # Start also the final firewall phase. - Service.Start("SuSEfirewall2_setup") if SuSEFirewall.IsEnabled - - :auto # EOF From f76d2306efe31b5b7e1a52fe673474427776e9cd Mon Sep 17 00:00:00 2001 From: Michal Filka Date: Thu, 7 Nov 2013 12:47:54 +0100 Subject: [PATCH 4/4] Updated changelog --- VERSION | 2 +- package/yast2-installation.changes | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 67786e246..747457c6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.8 +3.0.9 diff --git a/package/yast2-installation.changes b/package/yast2-installation.changes index 0a291448d..fc1ad7fea 100644 --- a/package/yast2-installation.changes +++ b/package/yast2-installation.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Thu Nov 7 11:45:45 UTC 2013 - mfilka@suse.com + +- bnc#849391 + - removed explicit start of second phase of SuSEfirewall2 + initialization. Not needed when systemd is in use. +- 3.0.9 + ------------------------------------------------------------------- Wed Oct 23 07:27:28 UTC 2013 - lslezak@suse.cz