Hello community,

here is the log from the commit of package xinit for openSUSE:Factory checked 
in at 2016-04-06 11:51:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xinit (Old)
 and      /work/SRC/openSUSE:Factory/.xinit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xinit"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xinit/xinit.changes      2015-05-15 
07:42:39.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.xinit.new/xinit.changes 2016-04-06 
11:51:22.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Apr  1 08:39:03 UTC 2016 - e...@suse.com
+
+- xinit.tar.bz2:
+  update /etc/X11/xinit/xinitrc.common to make sure numbered scripts
+  are run sequentially. All non-numbered scripts will still be run in
+  background to avoid stalling on non-daemonizing 'services' (boo#973559).
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xinit.spec ++++++
--- /var/tmp/diff_new_pack.0VzE1w/_old  2016-04-06 11:51:23.000000000 +0200
+++ /var/tmp/diff_new_pack.0VzE1w/_new  2016-04-06 11:51:23.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xinit
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++++++ xinit.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/etc/X11/xinit/xinitrc.common 
new/etc/X11/xinit/xinitrc.common
--- old/etc/X11/xinit/xinitrc.common    2015-03-12 11:34:07.000000000 +0100
+++ new/etc/X11/xinit/xinitrc.common    2016-04-05 09:59:53.000000000 +0200
@@ -53,7 +53,11 @@
        if grep -qE "^# to be sourced" $script >/dev/null 2>&1; then
            . $script
        else
-           $script &
+           # run number ordered scripts sequentially
+           case ${script##*/} in 
+                [0-9][0-9]-*)  $script ;;
+                *) $script & ;;
+           esac
        fi
     else
        . $script


Reply via email to