chiark / gitweb /
update fixme
[elogind.git] / fixme
1 * dot output for --test showing the 'initial transaction'
2
3 * check 'disable'
4   <Viking-Ice>    "Warning: Unit file changed in disk, 'systemctl --system daemon-reload' recommended
5   <kay>           when does it do that?
6   <Viking-Ice>    if you disable the service
7
8 * fixup var-run/var-lock tmpfs mounts. we need:
9     touch /var/run/utmp
10     chown root:utmp /var/run/utmp
11     mkdir -p /var/lock/subsys
12
13 * have a simple syslog bridge providing /dev/log and forward messages
14   to /dev/kmsg. at the moment the real syslog can be started, the bridge
15   is stopped and the open /dev/log fd to the real syslog. that way we
16   don't lose any early log message, and simple systems have full syslog
17   support in the kernel ringbuffer, without any syslog service or disk
18   access
19
20 * calendar time support in timer, iCalendar semantics for the timer stuff (RFC2445)
21
22 * implicitly import "defaults" settings file into all types
23
24 * add #ifdefs for non-sysv builds
25
26 * reinvestigate hwclock
27
28 * "disabled" load state?
29
30 * ability to kill services? i.e. in contrast to stopping them, go directly
31   into killing mode?
32
33 * port over to LISTEN_FDS/LISTEN_PID:
34
35    - uuidd    DONE
36    - dbus     DONE
37    - rsyslog  DONE
38    - rpcbind (/var/run/rpcbind.sock!) DONE
39    - cups     DONE
40    - avahi-daemon (/var/run/avahi-daemon/socket) DONE
41    - ssh      CLASSIC
42    - postfix, saslauthd
43    - apache/samba
44    - libvirtd (/var/run/libvirt/libvirt-sock-ro)
45    - bluetoothd (/var/run/sdp! @/org/bluez/audio!)
46    - distccd
47
48 * write utmp record a la upstart for processes
49
50 * follow property change dbus spec
51
52 * selinux policy loading
53
54 * place /etc/inittab with explaining blurb.
55
56 * fingerprint.target, wireless.target, gps.target
57
58 * set_put(), hashmap_put() return values checken. i.e. == 0 macht kein free()!
59
60 * fix merging in .swap units
61
62 * chkconfig/systemd-install glue
63
64 * io priority during initialization
65
66 * if a service fails too often, make the service enter maintenance mode, and the socket, too.
67
68 * Ray: plymouth after/before getty? https://bugzilla.redhat.com/show_bug.cgi?id=623430
69
70 * add no-tab header to .h
71
72 * fix systemctl daemon-reload in part of boot
73
74 External:
75
76 * nomodules nach udev umziehen
77
78 * sysv functions should color when stdout is tty, not stdin
79
80 * agetty should not modify baudrate https://bugzilla.redhat.com/show_bug.cgi?id=623685
81
82 * ck logging, ssh readahead
83
84 * pam: fix double sudo session cleanup:
85   http://www.gratisoft.us/bugzilla/show_bug.cgi?id=421
86
87 * patch /etc/init.d/functions with:
88
89   if [ $PPID -ne 1 && mountpoint /cgroup/systemd ] ; then echo "You suck!" ; fi
90
91 https://bugzilla.redhat.com/show_bug.cgi?id=614245 -- plymouth
92 https://bugzilla.redhat.com/show_bug.cgi?id=612789 -- umount /cgroup on halt
93 https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
94 https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
95 https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
96 https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
97 https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
98 http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
99 http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
100 https://bugzilla.redhat.com/show_bug.cgi?id=617328 -- ntp
101 https://bugzilla.redhat.com/show_bug.cgi?id=617320 -- at
102 https://bugzilla.redhat.com/show_bug.cgi?id=617326 -- fprintd
103 https://bugzilla.redhat.com/show_bug.cgi?id=617333 -- yum
104 https://bugzilla.redhat.com/show_bug.cgi?id=617317 -- acpid
105 https://bugzilla.redhat.com/show_bug.cgi?id=617327 -- gpm
106 https://bugzilla.redhat.com/show_bug.cgi?id=617330 -- pcsc-lite
107 https://bugzilla.redhat.com/show_bug.cgi?id=617321 -- audit
108
109 Regularly:
110
111 * look for close() vs. close_nointr() vs. close_nointr_nofail()
112
113 * check for strerror(r) instead of strerror(-r)
114
115 * Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
116
117 * %m in printf() instead of strerror();
118
119 * pahole
120
121 * CFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections -ffunction-sections -fdata-sections"