chiark / gitweb /
update TODO
authorKay Sievers <kay.sievers@vrfy.org>
Thu, 14 Apr 2011 18:16:41 +0000 (20:16 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Thu, 14 Apr 2011 18:16:41 +0000 (20:16 +0200)
TODO

diff --git a/TODO b/TODO
index 98251b2c0a49302dfa1177458e49d3e7066048ed..6c94a42fd7284690525b9a65c30e151a7f597f2a 100644 (file)
--- a/TODO
+++ b/TODO
@@ -22,11 +22,19 @@ F15:
 * be nice to ingo
 
 * get writev() /dev/kmsg support into the F15 kernel
 * be nice to ingo
 
 * get writev() /dev/kmsg support into the F15 kernel
+    https://lkml.org/lkml/2011/4/6/473
+  patched merged into -mm
 
 * fix sd_is_socket() invocation in dbus
 
 Features:
 
 
 * fix sd_is_socket() invocation in dbus
 
 Features:
 
+* make sure multiple sockets in a .socket file appear in the order they are listed
+  currently we get:
+    [Socket]
+    ListenSequentialPacket=@/org/kernel/udev/udevd    --> 4
+    ListenNetlink=kobject-uevent 1                    --> 3
+
 * fix alsa mixer restore to not print error when no config is stored
 
 * don't trim empty cgroups
 * fix alsa mixer restore to not print error when no config is stored
 
 * don't trim empty cgroups
@@ -65,16 +73,16 @@ Features:
 
 * Find a way to replace /var/run, /var/lock directories with
   symlinks during an RPM package upgrade (filesystem.rpm or systemd.rpm).
 
 * Find a way to replace /var/run, /var/lock directories with
   symlinks during an RPM package upgrade (filesystem.rpm or systemd.rpm).
+  (lua code to create symlinks right away for new installations is in filesytem.rpm now)
   We soon want to get rid of var-run.mount var-lock.mount units:
   We soon want to get rid of var-run.mount var-lock.mount units:
-
-  if mountpoint /run ; then
-        umount /var/run || :
-  else
-        mount --move /var/run /run || mount --bind /var/run /run
-  fi
-  mv /var/run /var/.run.save
-  ln -s /run /var/run
-  echo "R /var/.run.save" > /etc/tmpfiles.d/remove-run-save.conf
+    if mountpoint /run ; then
+          umount /var/run || :
+    else
+          mount --move /var/run /run || mount --bind /var/run /run
+    fi
+    mv /var/run /var/.run.save
+    ln -s /run /var/run
+    echo "R /var/.run.save" > /etc/tmpfiles.d/remove-run-save.conf
 
 * when key file cannot be found, read it from kbd in cryptsetup
 
 
 * when key file cannot be found, read it from kbd in cryptsetup