chiark / gitweb /
397f5c3e517a3a5b9ff4f98b9af6d6044c2b0b5f
[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' recomended
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 * downgrade warnings for non-existent services pulled-in
14   by soft dependencies, like:
15     init[1]: Failed to load configuration for isdn.service: No such file or directory
16
17 * have a simple syslog bridge providing /dev/log and forward messages
18   to /dev/kmsg. at the moment the real syslog can be started, the bridge
19   is stopped and the open /dev/log fd to the real syslog. that way we
20   don't lose any early log message, and simple systems have full syslog
21   support in the kernel ringbuffer, without any syslog service or disk
22   access
23
24 * calendar time support in timer, iCalendar semantics for the timer stuff (RFC2445)
25
26 * implicitly import "defaults" settings file into all types
27
28 * add #ifdefs for non-sysv builds
29
30 * reinvestigate random seed, hwclock
31
32 * "disabled" load state?
33
34 * ability to kill services? i.e. in contrast to stopping them, go directly
35   into killing mode?
36
37 * port over to LISTEN_FDS/LISTEN_PID:
38
39    - uuidd    DONE
40    - dbus     DONE
41    - rsyslog  DONE
42    - rpcbind (/var/run/rpcbind.sock!) DONE
43    - cups     DONE
44    - avahi-daemon (/var/run/avahi-daemon/socket) DONE
45    - ssh      CLASSIC
46    - postfix, saslauthd
47    - apache/samba
48    - libvirtd (/var/run/libvirt/libvirt-sock-ro)
49    - bluetoothd (/var/run/sdp! @/org/bluez/audio!)
50    - distccd
51
52 * write utmp record a la upstart for processes
53
54 * follow property change dbus spec
55
56 * selinux policy loading/socket stuff
57
58 * systemctl status $PID, systemctl stop $PID!
59
60 * place /etc/inittab with explaining blurb.
61
62 * vielleicht implizit immer auf syslog dependen?
63
64 * debian deadlock when partition set to noauto
65
66 * fingerprint.target, wireless.target, gps.target
67
68 * set_put(), hashmap_put() return values checken. i.e. == 0 macht kein free()!
69
70 * fix merging in .swap units
71
72 * pahole
73
74 * chkconfig/systemd-install glue
75
76 * io priority during initialization
77
78 * if a service fails too often, make the service enter maintainence mode, and the socket, too.
79
80 * don't show file not found msgs for irrelevant units
81
82 * hide plymouth in multi-user mode
83
84 * audit
85
86 * env vars must be replaced by ""
87
88 External:
89
90 * sysv functions should color when stdout is tty, not stdin
91
92 * agetty should not modify baudrate
93
94 * ck logging, ssh readahead
95
96 * pam: fix double sudo session cleanup:
97   http://www.gratisoft.us/bugzilla/show_bug.cgi?id=421
98
99 * patch /etc/init.d/functions with:
100
101   if [ $PPID -ne 1 && mountpoint /cgroup/systemd ] ; then echo "You suck!" ; fi
102
103 https://bugzilla.redhat.com/show_bug.cgi?id=614245 -- plymouth
104 https://bugzilla.redhat.com/show_bug.cgi?id=612789 -- umount /cgroup on halt
105 https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
106 https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
107 https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
108 https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
109 https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
110 http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
111 http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
112 https://bugzilla.redhat.com/show_bug.cgi?id=617328 -- ntp
113 https://bugzilla.redhat.com/show_bug.cgi?id=617320 -- at
114 https://bugzilla.redhat.com/show_bug.cgi?id=617326 -- fprintd
115 https://bugzilla.redhat.com/show_bug.cgi?id=617333 -- yum
116 https://bugzilla.redhat.com/show_bug.cgi?id=617317 -- acpid
117 https://bugzilla.redhat.com/show_bug.cgi?id=617327 -- gpm
118 https://bugzilla.redhat.com/show_bug.cgi?id=617330 -- pcsc-lite
119 https://bugzilla.redhat.com/show_bug.cgi?id=617321 -- audit
120
121 Regularly:
122
123 * look for close() vs. close_nointr() vs. close_nointr_nofail()
124
125 * check for strerror(r) instead of strerror(-r)
126
127 * Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
128
129 * %m in printf() instead of strerror();