]> err.no Git - systemd/commitdiff
Add changes from NMU
authorMichael Biebl <biebl@debian.org>
Tue, 6 Mar 2012 17:00:49 +0000 (18:00 +0100)
committerTollef Fog Heen <tfheen@err.no>
Tue, 6 Mar 2012 17:00:49 +0000 (18:00 +0100)
debian/changelog
debian/rules
debian/systemd.postinst

index 6db487cf060569c323210960c109a73d33b8d7e6..d4011cc5c7e5eda91bca14be03a53a1aa0807f3c 100644 (file)
@@ -48,6 +48,16 @@ systemd (43-1) experimental; urgency=low
 
  -- Tollef Fog Heen <tfheen@debian.org>  Tue, 07 Feb 2012 21:36:34 +0100
 
+systemd (37-1.1) unstable; urgency=low
+
+  * Non-maintainer upload with Tollef's consent.
+  * Remove --parallel to workaround a bug in automake 1.11.3 which doesn't
+    generate parallel-safe build rules. Closes: #661842
+  * Create a compat symlink /run/initctl → /dev/initctl to work with newer
+    versions of sysvinit. Closes: #657979
+
+ -- Michael Biebl <biebl@debian.org>  Sat, 03 Mar 2012 17:42:10 +0100
+
 systemd (37-1) unstable; urgency=low
 
   [ Tollef Fog Heen ]
index 0c60341f94c6f30bbc308c1892c72de2038403c0..f41011189436a45f37d3834d779b03ae83b04b07 100755 (executable)
@@ -39,4 +39,4 @@ override_dh_autoreconf:
        dh_autoreconf debian/rules -- autoreconf
 
 %:
-       dh $@ --parallel --with autoreconf
+       dh $@ --with autoreconf
index bfff5f0563354b085ee7b747c4d494204f43e494..6319a93c692102677ae5e6d8f97d705164b0bbd6 100644 (file)
@@ -40,6 +40,13 @@ EOF
     fi
 fi
 
+if dpkg --compare-versions "$2" lt "37-1.1"; then
+    # Create /run/initctl → /dev/initctl compat symlink on upgrades
+    if [ -e /sys/fs/cgroup/systemd ]; then
+        systemctl restart systemd-initctl.socket || true
+    fi
+fi
+
 if dpkg --compare-versions "$2" lt "40-1"; then
     # /lib/init/rw has been replaced by /run, so try to remove it on upgrades
     # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643699