]> git.ipfire.org Git - thirdparty/systemd.git/blame - TODO
execute: make sending of SIGKILL on shutdown optional
[thirdparty/systemd.git] / TODO
CommitLineData
0058d7b9
LP
1* don't fail a service if reload fails
2
2292707d
LP
3* reload PID file after reload, allow dynamically changing main PIDs
4
5* Fix multiple reload statements
6
47ae6e67
LP
7* figure out what happened to bluez patch
8
9* in pam_systemd: add option to kill normal user sessions on logout but only those with uid != 0
10
487a15bb
LP
11* introduce StandardOutput=syslog+console and StandardOutput=kmsg+console to support fsck output at boot
12
13* Patch systemd-fsck to use -C and pass console fd to it
14
15* sometimes processes seem to remain when we kill a service
16 http://lists.fedoraproject.org/pipermail/devel/2011-January/147559.html
17
2d011a79
LP
18* when launching pager, take number of columns first
19
2c4b304e
LP
20* support remote/ssh systemctl/systemadm, and local privileged access
21
22* finish syslog socket stuff
23
35f10fcc
LP
24* configurable jitter for timer events
25
afe4bfe2
LP
26* dbus should run with oom adjust set
27
fb8161af
LP
28* support caching password questions in plymouth and on the console
29 https://bugzilla.redhat.com/show_bug.cgi?id=655538
30
fb8161af
LP
31* dep loop when using encrypted swap
32 https://bugzilla.redhat.com/show_bug.cgi?id=657234
33
34* exclude java hsp files by default
35 https://bugzilla.redhat.com/show_bug.cgi?id=527425
36
fb8161af
LP
37* load EnvironmentFile= when starting services, not when reloading configuration
38 https://bugzilla.redhat.com/show_bug.cgi?id=661282
39
fb8161af
LP
40* somehow some /etc/fstab supplied mount params are never applied to api fs
41 https://bugzilla.redhat.com/show_bug.cgi?id=663108
42
38752828
LP
43* automount units can cause a segfault:
44 https://bugs.freedesktop.org/show_bug.cgi?id=32076
45
fb8161af 46* support globs in systemd-tmpfiles
c29597a1 47
ccbbc0f9
LP
48* drop IN_ATTRIB from inotify watches for .path units where possible to avoid
49 lots of wakeups due to /dev changing when we watch a subdir of /dev.
50
bf5bb531 51* Support ProcessNeededForShutdown=true to allow stuff like mdmon
fc84026d 52 to be killed very late after the rootfs is read only
bf5bb531
KS
53
54* Integrate "mdadm --wait-clean". Maybe just let SIGTERM to mdmon trigger the
55 needed action
56
3ae05c8e
KS
57* bind mounts with 'fsck' fail and block for a minute:
58 /foo /bar none bind 1 1
bf5bb531 59 (requesting fsck is wrong, but why do we block for a minute
3ae05c8e 60 instead of just handling the error)
6d3d218b 61
59fee421 62* oneshot services which do not remain: 'exited' instead of 'dead'?
fc84026d 63 it should be visible in 'systemctl' that they have been run?
59fee421
LP
64
65* dot output for --test showing the 'initial transaction'
66
8c6db833 67* calendar time support in timer, iCalendar semantics for the timer stuff (RFC2445)
351c7e74
KS
68 - check timerfd() patch: http://lkml.org/lkml/2010/11/23/290
69
70* systemd --user
71 - get PR_SET_ANCHOR merged: http://lkml.org/lkml/2010/2/2/165
72
73* add VT tracking:
74 - provide CK functionality
dd04863e
KS
75 - start getty only when actual vt switch happens (same model as
76 socket on-demand activation). allocate the next free tty and
77 start a getty there. this way, pressing alt-f[1-12] will switch
78 through running X and getty sessions, and any unallocated
79 activated tty will start a new getty. the hardcoding of
80 getty[1-6] will entirely go away.
fc84026d 81 - http://git.kernel.org/?p=linux/kernel/git/gregkh/tty-2.6.git;a=commitdiff;h=fbc92a3455577ab17615cbcb91826399061bd789
75787bb7 82
129126f3 83* implicitly import "defaults" settings file into all types
75787bb7 84
129126f3 85* port over to LISTEN_FDS/LISTEN_PID:
a625ac1a 86 - uuidd DONE
9726b29e 87 - dbus DONE
88ce42f6 88 - rsyslog DONE
c0120d99
LP
89 - rpcbind (/var/run/rpcbind.sock!) DONE
90 - cups DONE
91 - avahi-daemon (/var/run/avahi-daemon/socket) DONE
874aa2cc 92 - ssh CLASSIC
a625ac1a 93 - postfix, saslauthd
a625ac1a
LP
94 - apache/samba
95 - libvirtd (/var/run/libvirt/libvirt-sock-ro)
96 - bluetoothd (/var/run/sdp! @/org/bluez/audio!)
a625ac1a
LP
97 - distccd
98
064f51fa 99* fingerprint.target, wireless.target, gps.target
0ff3dea7 100
647703fe 101* set_put(), hashmap_put() return values check. i.e. == 0 doesn't free()!
246756ca 102
50f2a90d 103* io priority during initialization
8fe914ec 104
74ac3cbd 105* if a service fails too often, make the service enter failed mode, and the socket, too.
ea4a240d 106
647703fe 107* systemctl list-jobs - show dependencies
63090775 108
313ed05b 109* accountsservice is borked
63090775 110
20604ebc
LP
111* auditd service files
112
20604ebc
LP
113* add systemctl switch to dump transaction without executing it
114
3b63d2d3 115* suspend, resume
da726a4d 116
1a34d367
LP
117* readahead: btrfs/LVM SSD detection
118
71fad675
LP
119* when processes remain in a service even though the start command failed enter active
120
98e1f931
LP
121* add seperate man page for [Install] settings
122
510051fc 123* only add quotacheck deps to .mount units which mention grpquota/usrquota in the mount flags
e5ebf783 124
9fe117ea
LP
125* systemctl condrestart should return 0 if service isn't running
126
74715b82
LP
127* tmpfiles: allow specification of .conf files on cmdline
128
42e8a0a8
LP
129* allow runtime changing of log level and target
130
e3aa71c3 131* automatically determine TERM= based on tty name even for /dev/console
fc84026d
KS
132 http://git.kernel.org/?p=linux/kernel/git/gregkh/tty-2.6.git;a=commitdiff;h=fbc92a3455577ab17615cbcb91826399061bd789
133 http://git.kernel.org/?p=linux/kernel/git/gregkh/tty-2.6.git;a=commitdiff;h=b7b8de087384cc1954a8cd075af3f9e5977caa2e
6210e7fc 134
42e8a0a8
LP
135* fix hotplug transactions
136
0cf84693
LP
137* isolate multi-user.target doesn't start a getty@tty1 if we run it from graphical.target
138
3686ced6
LP
139* sendmail.service doesn't get rid PID file, fails to kill everything on stop
140
141* global defaults for StandardOuput=xxx
142
85f6a868
LP
143* mkswap/mke2fs is called on wrong devices in crypto devices.
144
be8088a2
LP
145Fedora:
146
3686ced6 147* obsolete readhead in systemd pkg
be8088a2
LP
148
149* chkconfig → systemd enable/daemon-reload glue
150
6bd21277
LP
151* /var/lock, /var/run → what happens if rpm stuff is no %ghosted?
152
2f8cd170 153External:
74fe1fe3
LP
154
155* make cryptsetup lower --iter-time
156
06ae4bfe
LP
157* patch kernel for xattr support in /dev, /proc/, /sys and /sys/fs/cgroup.
158
6f3f9deb 159* patch kernel for cpu feature modalias for autoloading aes/kvm/...
fc84026d 160 http://git.kernel.org/?p=linux/kernel/git/ak/linux-misc-2.6.git;a=shortlog;h=refs/heads/cpuid-match
6f3f9deb 161
449ddb2d
LP
162* place /etc/inittab with explaining blurb.
163
20604ebc
LP
164* pam_securetty should honour console=
165
26192dfc
LP
166* procps, psmisc, sysvinit-tools, hostname → util-linux-ng
167
50f2a90d
LP
168https://bugzilla.redhat.com/show_bug.cgi?id=614245 -- plymouth
169https://bugzilla.redhat.com/show_bug.cgi?id=612789 -- umount /cgroup on halt
170https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
171https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
172https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
173https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
5e5c6cd7
LP
174https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
175http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
50f2a90d 176http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
b5e9dba8
LP
177https://bugzilla.redhat.com/show_bug.cgi?id=617328 -- ntp
178https://bugzilla.redhat.com/show_bug.cgi?id=617320 -- at
179https://bugzilla.redhat.com/show_bug.cgi?id=617326 -- fprintd
180https://bugzilla.redhat.com/show_bug.cgi?id=617333 -- yum
181https://bugzilla.redhat.com/show_bug.cgi?id=617317 -- acpid
182https://bugzilla.redhat.com/show_bug.cgi?id=617327 -- gpm
183https://bugzilla.redhat.com/show_bug.cgi?id=617330 -- pcsc-lite
184https://bugzilla.redhat.com/show_bug.cgi?id=617321 -- audit
02ee865a 185https://bugzilla.redhat.com/show_bug.cgi?id=617316 -- abrt
14bd37fe 186
129126f3 187Regularly:
874aa2cc 188
129126f3 189* look for close() vs. close_nointr() vs. close_nointr_nofail()
5021be21 190
129126f3 191* check for strerror(r) instead of strerror(-r)
5b6319dc
LP
192
193* Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
8c6db833
LP
194
195* %m in printf() instead of strerror();
444a79d3
LP
196
197* pahole
198
199* CFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections -ffunction-sections -fdata-sections"