chiark / gitweb /
update fixme
[elogind.git] / fixme
1 * fixup var-run/var-lock tmpfs mounts. we need:
2     touch /var/run/utmp
3     chown root:utmp /var/run/utmp
4     mkdir -p /var/lock/subsys
5
6 * downgrade warnings for non-existent services pulled-in
7   by soft dependencies, like:
8     init[1]: Failed to load configuration for isdn.service: No such file or directory
9
10 * somehow fix the start of getty on tty1, which clears the screen, and mixes
11   its output with systemd bootup messages
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 random seed, 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/socket stuff
53
54 * systemctl status $PID, systemctl stop $PID!
55
56 * place /etc/inittab with explaining blurb.
57
58 * vielleicht implizit immer auf syslog dependen?
59
60 * debian deadlock when partition set to noauto
61
62 * fingerprint.target, wireless.target, gps.target
63
64 * set_put(), hashmap_put() return values checken. i.e. == 0 macht kein free()!
65
66 * fix merging in .swap units
67
68 * pahole
69
70 * chkconfig/systemd-install glue
71
72 * io priority during initialization
73
74 * if a service fails too often, make the service enter maintainence mode, and the socket, too.
75
76 * send cgroup msg directly
77
78 * don't show file not found msgs for irrelevant units
79
80 External:
81
82 * agetty should not modify baudrate
83
84 * ck logging, ssh readahead
85
86 * pam: fix double sudo session cleanup:
87   http://www.gratisoft.us/bugzilla/show_bug.cgi?id=421
88
89 * patch /etc/init.d/functions with:
90
91   if [ $PPID -ne 1 && mountpoint /cgroup/systemd ] ; then echo "You suck!" ; fi
92
93 https://bugzilla.redhat.com/show_bug.cgi?id=614245 -- plymouth
94 https://bugzilla.redhat.com/show_bug.cgi?id=612789 -- umount /cgroup on halt
95 https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
96 https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
97 https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
98 https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
99 https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
100 http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
101 http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
102
103 Regularly:
104
105 * look for close() vs. close_nointr() vs. close_nointr_nofail()
106
107 * check for strerror(r) instead of strerror(-r)
108
109 * Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
110
111 * %m in printf() instead of strerror();