mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-19 21:16:37 +07:00
92 lines
2.2 KiB
Plaintext
92 lines
2.2 KiB
Plaintext
* calendar time support in timer, iCalendar semantics for the timer stuff (RFC2445)
|
|
|
|
* implicitly import "defaults" settings file into all types
|
|
|
|
* add #ifdefs for non-sysv builds
|
|
|
|
* reinvestigate random seed, hwclock
|
|
|
|
* "disabled" load state?
|
|
|
|
* ability to kill services? i.e. in contrast to stopping them, go directly
|
|
into killing mode?
|
|
|
|
* port over to LISTEN_FDS/LISTEN_PID:
|
|
|
|
- uuidd DONE
|
|
- nscd DONE
|
|
- dbus DONE
|
|
- rsyslog DONE
|
|
- rpcbind (/var/run/rpcbind.sock!) DONE
|
|
- cups DONE
|
|
- avahi-daemon (/var/run/avahi-daemon/socket) DONE
|
|
- ssh CLASSIC
|
|
- postfix, saslauthd
|
|
- apache/samba
|
|
- libvirtd (/var/run/libvirt/libvirt-sock-ro)
|
|
- bluetoothd (/var/run/sdp! @/org/bluez/audio!)
|
|
- distccd
|
|
|
|
* write utmp record a la upstart for processes
|
|
|
|
* follow property change dbus spec
|
|
|
|
* selinux
|
|
|
|
* systemctl status $PID, systemctl stop $PID!
|
|
|
|
* systemctl list-units doesn't show units with actvie jobs?
|
|
|
|
* timeout waiting for mount devices?
|
|
|
|
* default logic for serial getty, ck logging, ssh readahead
|
|
|
|
* place /etc/inittab with explaining blurb.
|
|
|
|
* OnFailure=foo.unit
|
|
|
|
* default.target must be %ghosted...
|
|
|
|
* In command lines, support both "$FOO" and $FOO
|
|
|
|
* systemd-install disable should recursively kill all symlinks
|
|
|
|
* in %post create all symlinks manually and use inittab data
|
|
|
|
* check mtimes of dirs and unit files in systemctl
|
|
|
|
* /etc must always take precedence even if we follow symlinks!
|
|
|
|
* /lib/init/rw
|
|
|
|
* vielleicht implizit immer auf syslog dependen?
|
|
|
|
* für selinux muss der socket wissen was für service geexeced wird.
|
|
|
|
* debian deadlock when partition auf noauto is.
|
|
|
|
* maintenance units müssen vergessen werden
|
|
|
|
* maintenance muss dokumentiert werden
|
|
|
|
External:
|
|
|
|
* patch /etc/init.d/functions with:
|
|
|
|
if [ $PPID -ne 1 && mountpoint /cgroup/systemd ] ; then echo "You suck!" ; fi
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=614245
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=612789
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=612728
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=612712
|
|
|
|
Regularly:
|
|
|
|
* look for close() vs. close_nointr() vs. close_nointr_nofail()
|
|
|
|
* check for strerror(r) instead of strerror(-r)
|
|
|
|
* Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
|
|
|
|
* %m in printf() instead of strerror();
|