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