TODO revision 726a6e963056a7238a512cfe6ce612af2c2d1419
5274f05381d460069458d2139a28766c574fb197Kay Sievers* enabling an instance unit creates a pointless link, and
5274f05381d460069458d2139a28766c574fb197Kay Sievers the unit will be started with getty@getty.service:
5274f05381d460069458d2139a28766c574fb197Kay Sievers $ systemctl enable getty@.service
5274f05381d460069458d2139a28766c574fb197Kay Sievers ln -s '/usr/lib/systemd/system/getty@.service' '/etc/systemd/system/getty.target.wants/getty@.service'
5274f05381d460069458d2139a28766c574fb197Kay Sievers* Dangling symlinks of .automount unit files in .wants/ directories, set up
19aadacf92ad86967ffb678e37b2ff9e83cb9480Jan Engelhardt automount points even when the original .automount file did not exist
cff452c7e974db5053cdbd0d7bbbab2e3b4c91b9Kay Sievers anymore. Only the .mount unit was still around.
cff452c7e974db5053cdbd0d7bbbab2e3b4c91b9Kay Sievers* properly handle .mount unit state tracking when two mount points are stacked one on top of another on the exact same mount point.
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers* shorten the message to sane length:
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
a40593a0d0d740efa387e35411e1e456a6c5aba7Lennart Poettering* systemctl --root=container/ set-default ... is totally borked.
ea92ae33e0fbbf8a98cd2e08ca5a850d83d57faeMaciej Wereski* Fedora: when installing fedora with yum --installroot /var/run is a directory, not a symlink
04ac799283f517672a5424e7c5bf066cfa4ca020Zbigniew Jędrzejewski-Szmek https://bugzilla.redhat.com/show_bug.cgi?id=975864
04ac799283f517672a5424e7c5bf066cfa4ca020Zbigniew Jędrzejewski-Szmek* Fedora: add an rpmlint check that verifies that all unit files in the RPM are listed in %systemd_post macros.
d8160f21fd295b451cee9679aa281fedf1cb8e8cZbigniew Jędrzejewski-Szmek* Fedora: post FPC ticket to move add %tmpfiles_create to the packaging guidelines
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* support transient mount units
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* Imply DevicePolicy=closed when PrivateDevices= is used
55d32caf94d8df547ca763be52b0c35bb6388606Lennart Poettering* add an "input" group to udev logic and add all input devices to it
bafb15bab99887d1b6b8a35136531bac6c3876a6Lennart Poettering* libsystemd-login: implement getpeer_unit(), get_peer_slice(), ...
bafb15bab99887d1b6b8a35136531bac6c3876a6Lennart Poettering* machined: provide calls GetMachineByAddress() on the manager
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering interface to get the machine for a local IP address, and
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering GetAddress() on the Machine interface to get the Address for a
3540c7f88fd4b860d3d6d0e931ddb7cd91bc559aLennart Poettering machine. Implement via forking off child process which quickly joins
3540c7f88fd4b860d3d6d0e931ddb7cd91bc559aLennart Poettering the cotnainer and passes data to parent. Show this in "machinectl
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering status", and use it to implement NSS module to provide automatic
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering name resolution for containers.
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering* add generator that pulls in systemd-network from containers when
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering CAP_NET_ADMIN is set, more than the loopback device is defined, even
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering when it is otherwise off
6a8b5fa4635ed858788fb10099ec9b62b3359a0aLennart Poettering* MessageQueueMessageSize= and RLimitFSIZE= (and suchlike) should use parse_iec_size().
6a8b5fa4635ed858788fb10099ec9b62b3359a0aLennart Poettering* "busctl status" works only as root on dbus1, since we cannot read
6a8b5fa4635ed858788fb10099ec9b62b3359a0aLennart Poettering* systemctl (and possibly related tools): support a new switch that
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering allows enumerating units in local containers recursively. "systemctl
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering list-units -R" or so should not only lists on the host, but also the
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering services in all containers in a pretty way, to give an overview of
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering the entire system. Also, maybe add "systemctl list-machines" which
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering works like "machinectl list" but includes information about the
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering health status of each registered machine. For that we should
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering probably implement something that encodes the system health status
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering in a single enum state, i.e. something like a system-wide state
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering starting → running → failed → stopping, that is based on the current
3333d748facc15f49935b6b793490ba0824976e6Zbigniew Jędrzejewski-Szmek job queue and a check for failed services. Maybe then change
708c143c7cd2bbd748ac0fa993496ff44e72701cZbigniew Jędrzejewski-Szmek "systemctl status" without args to output this state along with a
3333d748facc15f49935b6b793490ba0824976e6Zbigniew Jędrzejewski-Szmek selection of other data, such as the uptime or so.
e79e8afd62bdec28a88d52fa0761aff9ce145b77Lennart Poettering* implement Distribute= in socket units to allow running multiple
b6741478e7661c7e580e5dcfd6a6fccd1899c1d0Lennart Poettering service instances processing the listening socket, and open this up
b6741478e7661c7e580e5dcfd6a6fccd1899c1d0Lennart Poettering for ReusePort=
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* add a timelimit to generator invocation
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* socket units: support creating sockets in different namespace,
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering opening it up for JoinsNamespaceOf=. This would require to fork off
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering a tiny process that joins the namespace and creates/binds the socket
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering and passes this back to PID1 via SCM_RIGHTS. This also could be used
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering to allow Chown/chgrp on sockets without requiring NSS in PID 1.
0bee65f0622c4faa8ac8ae771cc0c8a936dfa284Lennart Poettering* New service property: maximum CPU and wallclock runtime for a service
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* introduce bus call FreezeUnit(s, b), as well as "systemctl freeze
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering $UNIT" and "systemctl thaw $UNIT" as wrappers around this. The calls
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering should SIGSTOP all unit processes in a loop until all processes of
ebcf1f97de4f6b1580ae55eb56b1a3939fe6b602Lennart Poettering it are fully stopped. This can later be used for app management by
08cd15525450ff2c2ac814a58930f6d82284a1baLennart Poettering desktop UIs such as gnome-shell to freeze apps that are not visible
08cd15525450ff2c2ac814a58930f6d82284a1baLennart Poettering on screen, not unlike how job control works on the shell
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering - busctl zsh completion is outdated
718db96199eb307751264e4163555662c9a389faLennart Poettering - systemd-nspawn -Z/-L/-q is missing for zsh
718db96199eb307751264e4163555662c9a389faLennart Poettering - manager property enumeration was broken when systemd moved to /usr/lib/
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - implement per-slice CPUFairScheduling=1 switch
718db96199eb307751264e4163555662c9a389faLennart Poettering - handle jointly mounted controllers correctly
718db96199eb307751264e4163555662c9a389faLennart Poettering - introduce high-level settings for RT budget, swappiness
718db96199eb307751264e4163555662c9a389faLennart Poettering - how to reset dynamically changed unit cgroup attributes sanely?
966204e010ed432a1d7a0481d41a326d8ec7b0c8Lennart Poettering - when reloading configuration, apply new cgroup configuration
966204e010ed432a1d7a0481d41a326d8ec7b0c8Lennart Poettering - when recursively showing the cgroup hierarchy, optionally also show
94676f3e9352cbf1f72e0a512ee0d2ed83ff676dLennart Poettering the hierarchies of child processes
ced4d06784dbb19666688947901961f949f2aa6dLennart Poettering* transient units:
ced4d06784dbb19666688947901961f949f2aa6dLennart Poettering - allow creating auxiliary units with the same call
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - add field to transient units that indicate whether systemd or somebody else saves/restores its settings, for integration with libvirt
416446221d905b6815175dc4d525d27f8ae43d1bLennart Poettering - ensure scope units may be started only a single time
416446221d905b6815175dc4d525d27f8ae43d1bLennart Poettering* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
9db76355212de5eb7985829d352183d3bdfb56d5Lennart Poettering* when we detect low battery and no AC on boot, show pretty splash and refuse boot
baa89da40a1d42242c9c62603501ada7e9e52613Lennart Poettering* machined, localed: when we try to kill an empty cgroup, generate an ESRCH error over the bus
0aafd43d235982510d1c40564079f7bcec0c7c19Lennart Poettering* libsystemd-journal, libsystemd-login, libudev: add calls to easily attach these objects to sd-event event loops
19aadacf92ad86967ffb678e37b2ff9e83cb9480Jan Engelhardt* be more careful what we export on the bus as (usec_t) 0 and (usec_t) -1
df5f6971e6e15b4632884916c71daa076c8bae96Lennart Poettering* unify dispatch table in systemctl_main() and friends
982e44dbc3e70c97e83464a30354b80973d52b41Lennart Poettering* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
982e44dbc3e70c97e83464a30354b80973d52b41Lennart Poettering* socket-proxyd: Use sd-resolve to resolve the server address
fcba531ed4c6e6f8f21d8ca4e3a56e3162b1c578Lennart Poettering* rfkill,backlight: we probably should run the load tools inside of the udev rules so that the state is properly initialized by the time other software sees it
8b8f259170e35b93e6c6d1757cb8b835bbdaa40cZbigniew Jędrzejewski-Szmek* After coming back from hibernation reset hibernation swap partition using the /dev/snapshot ioctl APIs
e1b7e7ec9b34ae6ae54a4c8084395cbf2bfe9960Lennart Poettering* If we try to find a unit via a dangling symlink, generate a clean
6aaa8c2f783cd1b3ac27c5ce40625d032e7e3d71Zbigniew Jędrzejewski-Szmek error. Currently, we just ignore it and read the unit from the search
18d4e7c26e7806ac363d19989df7144d5058ce41Lennart Poettering* refuse boot if /etc/os-release is missing or /etc/machine-id cannot be set up
bdeeb6b543a2a2d0a494f17b85f1498859cdfc2fLennart Poettering* given that logind now lets PID 1 do all nasty work, we can
bdeeb6b543a2a2d0a494f17b85f1498859cdfc2fLennart Poettering probably reduce the capability set it retains substantially.
bdeeb6b543a2a2d0a494f17b85f1498859cdfc2fLennart Poettering (we need CAP_SYS_ADMIN for drmSetMaster(), so maybe not worth it)
69af45035913e7119cffd94c542bd3039600e45dZbigniew Jędrzejewski-Szmek* btrfs raid assembly: some .device jobs stay stuck in the queue
466784c8710e5cb0e0b86a16506d992d7ec5b619Kay Sievers* make sure gdm doesn't use multi-user-x but the new default X configuration file, and then remove multi-user-x from systemd
9444b1f20e311f073864d81e913bd4f32fe95cfdLennart Poettering* man: the documentation of Restart= currently is very misleading and suggests the tools from ExecStartPre= might get restarted.
1f263d4dc23b9807ac6138eb5014d3d94c5fe51aLennart Poettering* load .d/*.conf dropins for device units
4e09014daf8f98584b3f15e64e93bed232e70a6bLennart Poettering* gparted needs to disable auto-activation of mount units somehow, or
4e09014daf8f98584b3f15e64e93bed232e70a6bLennart Poettering maybe we should stop doing auto-activation of this after boot
6bb648a16ae4a682ad4784412af706d2e6a3e4daTom Gundersen entirely. https://bugzilla.gnome.org/show_bug.cgi?id=701676
883b36908788361a8bb945ce884dc518da83b371Kay Sievers Maybe take a BSD lock at the disk device node and teach udev to
eb01ba5de14859d7a94835ab9299de40132d549aLennart Poettering check for that and suppress event handling.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* something pulls in pcre as shared object dependency into our daemons such as hostnamed.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* allow implementation of InaccessibleDirectories=/ plus
bee7e928990fd8a0c5909c2022a2b9eede557c81Lennart Poettering ReadOnlyDirectories=... for whitelisting files for a service.
0a825b5cd4adb4d9dadfb2e237cdceae09399804Lennart Poettering - when kdbus doesn't take our message without memfds, try again with memfds
0a825b5cd4adb4d9dadfb2e237cdceae09399804Lennart Poettering - implement monitor logic
0a825b5cd4adb4d9dadfb2e237cdceae09399804Lennart Poettering - see if we can drop more message validation on the sending side
452de75e5b8b1cff207243848f4e5de68620554cLennart Poettering - add API to clone sd_bus_message objects
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering - systemd-bus-proxyd needs to enforce good old XML policy
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering - upload minimal kdbus policy into the kernel at boot
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering - kdbus: matches against source or destination pids for an "strace -p"-like feel. Problem: The PID info needs to be available in userspace too...
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering - longer term: priority inheritance
bee7e928990fd8a0c5909c2022a2b9eede557c81Lennart Poettering - check sender of response messages
0058679911db806b6db2fa445a1ce879a436c9d6Lennart Poettering - dbus spec updates:
0058679911db806b6db2fa445a1ce879a436c9d6Lennart Poettering - kdbus mapping
6a8b5fa4635ed858788fb10099ec9b62b3359a0aLennart Poettering - "const" properties (posted)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - port exit-on-idle logic to byebye ioctl
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - update systemd.special(7) to mention that dbus.socket is only about the compatibility socket now
12179984a38fe74581333fbcdc11c822d81f505fLennart Poettering - allow updating attach flags during runtime
eb01ba5de14859d7a94835ab9299de40132d549aLennart Poettering - pid1: peek into activating message when activating a service
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering - test bloom filter generation indexes
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering - introduce sd_bus_emit_object_added()/sd_bus_emit_object_removed() that automatically includes the build-in interfaces in the list
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering - port to sd-resolve for connecting to TCP dbus servers
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering - constructors for bus messages should probably not be OK with a NULL bus pointer
d686f034c3b9021e07faefe172ee660abd952871Lennart Poettering - allow multiple signal handlers per signal?
19aa7c4fef4a3f1dfc6d9980574ca220a6a40a71Lennart Poettering* in the final killing spree, detect processes from the root directory, and
69af45035913e7119cffd94c542bd3039600e45dZbigniew Jędrzejewski-Szmek complain loudly if they have argv[0][0] == '@' set.
e8a7a315391a6a07897122725cd707f4e9ce63d7Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=961044
461bd8e47cafacfcd38389e7558330bfb6e902adLennart Poettering* investigate endianness issues of UUID vs. GUID
ab8e074ce25b9947314c69e17afe1bd2527ee26dLennart Poettering* dbus: when a unit failed to load (i.e. is in UNIT_ERROR state), we
ab8e074ce25b9947314c69e17afe1bd2527ee26dLennart Poettering should be able to safely try another attempt when the bus call LoadUnit() is invoked.
ab8e074ce25b9947314c69e17afe1bd2527ee26dLennart Poettering* add a pam module that passes the hdd passphrase into the PAM stack and then expires it, for usage by gdm auto-login.
b454b11220e87add6d0f011695c7912b009c853dLennart Poettering* add a pam module that on password changes updates any LUKS slot where the password matches
b454b11220e87add6d0f011695c7912b009c853dLennart Poettering* maybe add a generator that looks for "systemd.run=" on the kernel cmdline for container usercases...
06db8540cdfc8259423ed90e7352dbc1d71eccd9Lennart Poettering* timedatctl, localectl: possibly make some commands work without the daemon, for chroot situations...
4ff49cb63075aba646b578f2516b37a8dfd5a65bLennart Poettering* timedatectl: print a nicer message when enabling ntp fails because ntpd/chrony are not installed
fff87a35d9e26c0d4ea41273a963c0eb20e18da4Zbigniew Jędrzejewski-Szmek* cgtop: make cgtop useful in a container
b8b4d3dddc7611dce3bf28004b0375d661120c62Lennart Poettering - add 'set -e' to scripts in test/
b8b4d3dddc7611dce3bf28004b0375d661120c62Lennart Poettering - make stuff in test/ work with separate output dir
3df82d5a8cdc510f518fd5e234ccb3233b748719Lennart Poettering* systemctl delete x.snapshot leaves no trace in logs (at least at default level).
3df82d5a8cdc510f518fd5e234ccb3233b748719Lennart Poettering* make the coredump collector tool move itself into the user's cgroup
b5c03638d48c07aa0eaf13b5f54000c7133e1883Lennart Poettering so that the coredump is properly written to the user's own journal
b5c03638d48c07aa0eaf13b5f54000c7133e1883Lennart Poettering* seems that when we follow symlinks to units we prefer the symlink
b5c03638d48c07aa0eaf13b5f54000c7133e1883Lennart Poettering destination path over /etc and /usr. We shouldn't do that. Instead
eece8c6fb5f4d354dcef6fd369e876c4f3a3f163Lennart Poettering /etc should always override /run+/usr and also any symlink
356ce9915ab1a4a1e6dc26954df34936a69e7c12Lennart Poettering* when isolating, try to figure out a way how we implicitly can order
356ce9915ab1a4a1e6dc26954df34936a69e7c12Lennart Poettering all units we stop before the isolating unit...
356ce9915ab1a4a1e6dc26954df34936a69e7c12Lennart Poettering* teach ConditionKernelCommandLine= globs or regexes (in order to match foobar={no,0,off})
3b953d68c628c6ae70adba871719ac0f16083b51Josh Triplett* after all byte-wise realloc() is slow, even on glibc, so i guess we
3b953d68c628c6ae70adba871719ac0f16083b51Josh Triplett need manual exponential loops after all
3b953d68c628c6ae70adba871719ac0f16083b51Josh Triplett* BootLoaderSpec: drop allowing ext234 for $BOOT. Clarify that the
09f727eebd87661f263d3c2c1e0de7b7771acd40Lennart Poettering kernel has to be in $BOOT. Clarify that the boot loader should be
09f727eebd87661f263d3c2c1e0de7b7771acd40Lennart Poettering installed to the ESP. Define a way how an installer can figure out
09f727eebd87661f263d3c2c1e0de7b7771acd40Lennart Poettering whether a BLS compliant boot loader is installed.
795607b22308f5b92073b012e43be1892fdd97c0Lennart Poettering* think about requeuing jobs when daemon-reload is issued? usecase:
795607b22308f5b92073b012e43be1892fdd97c0Lennart Poettering the initrd issues a reload after fstab from the host is accessible
795607b22308f5b92073b012e43be1892fdd97c0Lennart Poettering and we might want to requeue the mounts local-fs acquired through
795607b22308f5b92073b012e43be1892fdd97c0Lennart Poettering that automatically.
0be8342c04bbf129b4a21e5073eacccbbce4e896Lennart Poettering* systemd-inhibit: make taking delay locks useful: support sending SIGINT or SIGTERM on PrepareForSleep()
0be8342c04bbf129b4a21e5073eacccbbce4e896Lennart Poettering* journal-or-kmsg is currently broken? See reverted commit 4a01181e460686d8b4a543b1dfa7f77c9e3c5ab8.
e5ec62c56963d997edaffa904af5dc45dac23988Lennart Poettering* remove any syslog support from log.c -- we probably can't do this before split-off udev is gone for good
826872b61e4857dfffe63ba84e2b005623baecd6Lennart Poettering* shutdown logging: store to EFI var, and store to USB stick?
54c31a79f72ff57ac8eba089acacc4ab482b745dLennart Poettering* write UI tool that pops up emergency messages from the journal as notification
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* think about window-manager-run-as-user-service problem: exit 0 → activate shutdown.target; exit != 0 → restart service
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* use "log level" rather than "log priority" everywhere
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* timedate: have global on/off switches for auto-time (NTP), and auto-timezone that connman can subscribe to.
cbb7712189527f9f483321607e44c4ead3dd11b8Lennart Poettering* merge unit_kill_common() and unit_kill_context()
d01a73b6396f57792113c1b5df6e8492fc703e5eLennart Poettering* introduce ExecCondition= in services
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering - write man page for efi boot generator
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering - honor language efi variables for default language selection (if there are any?)
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering - honor timezone efi variables for default timezone selection (if there are any?)
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering - change bootctl to be backed by systemd-bootd to control temporary and persistent default boot goal plus efi variables
490b7e47093d491a2bdb1084fe92b796f4e07eefLennart Poettering* maybe do not install getty@tty1.service symlink in /etc but in /usr?
490b7e47093d491a2bdb1084fe92b796f4e07eefLennart Poettering* re-enable "make check" for gtk-doc (broken for unknown reason)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* fstab: add new mount option x-systemd-after=/foobar/waldo to allow manual dependencies to other mount points
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=812826
466784c8710e5cb0e0b86a16506d992d7ec5b619Kay Sievers* print a nicer explanation if people use variable/specifier expansion in ExecStart= for the first word
c0fe5db522b52f27e030655ce2c03e05cbbc1558Kay Sievers* mount: turn dependency information from /proc/self/mountinfo into dependency information between systemd units.
e9fd44b728ff1fc0d1f24fccb87a767f6865df27Lennart Poettering - logind: optionally, ignore idle-hint logic for autosuspend, block suspend as long as a session is around
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - When we update the kernel all kind of hibernation should be prohibited until shutdown/reboot
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - logind: wakelock/opportunistic suspend support
3040728b6691ea2e9df3a2060e2d49a792bbaedaLennart Poettering - Add pretty name for seats in logind
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - logind: allow showing logout dialog from system?
8ed206517c2be381324ac5832bf34cc14024270eLennart Poettering - logind: add equivalent to sd_pid_get_owner_uid() to the D-Bus API
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - we should probably handle SIGTERM/SIGINT to not leave dot files around, just in case
e6c6e7afffa80ad74efdb1ddfa815294624f1608Lennart Poettering - when logging out, remove user-owned sysv and posix IPC objects
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - session scopes/user unit: add RequiresMountsFor for the home directory of the user
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - add Suspend() bus calls which take timestamps to fix double suspend issues when somebody hits suspend and closes laptop quickly.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - if pam_systemd is invoked by su from a process that is outside of a
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering any session we should probably just become a NOP, since that's
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering usually not a real user session but just some system code that just
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering needs setuid().
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* exec: when deinitializating a tty device fix the perms and group, too, not only when initializing. Set access mode/gid to 0620/tty.
e5ec62c56963d997edaffa904af5dc45dac23988Lennart Poettering* service: watchdog logic: for testing purposes allow ping, but do not require pong
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - import and delete pstore filesystem content at startup
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - journald: also get thread ID from client, plus thread name
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - journal: when waiting for journal additions in the client always sleep at least 1s or so, in order to minimize wakeups
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - add API to close/reopen/get fd for journal client fd in libsystemd-journal.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - fallback to /dev/log based logging in libsystemd-journal, if we can't log natively?
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - declare the local journal protocol stable in the wiki interface chart
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: reuse XZ context
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - sd-journal: speed up sd_journal_get_data() with transparent hash table in bg
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journald: when dropping msgs due to ratelimit make sure to write
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering "dropped %u messages" not only when we are about to print the next
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering message that works, but alraedy after a short tiemout
c06bf414042cd1bf94e0af63e9e2a0c291bfc546Kay Sievers - check if we can make journalctl by default use --follow mode inside of less if called without args?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - maybe add API to send pairs of iovecs via sd_journal_send
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: when writing journal auto-rotate if time jumps backwards
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: add a setgid "systemd-journal" utility to invoke from libsystemd-journal, which passes fds via STDOUT and does PK access
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journactl: support negative filtering, i.e. FOOBAR!="waldo",
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering and !FOOBAR for events without FOOBAR.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: send out marker messages every now and then, and immediately sync with fdatasync() afterwards, in order to have hourly guaranteed syncs.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal-send.c, log.c: when the log socket is clogged, and we drop, count this and write a message about this when it gets unclogged again.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: find a way to allow dropping history early, based on priority, other rules
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: When used on NFS, check payload hashes
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journald: check whether it is OK if the client can still modify delivered journal entries
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal live copy, based on libneon (client) and libmicrohttpd (server)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journald: add kernel cmdline option to disable ratelimiting for debug purposes
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - refuse taking lower-case variable names in sd_journal_send() and friends.
f47ec8ebb3858553dec870e1c596e39525f46360Lennart Poettering - journald: we currently rotate only after MaxUse+MaxFilesize has been reached.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: deal nicely with byte-by-byte copied files, especially regards header
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: store euid in journal if it differs from uid
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: sanely deal with entries which are larger than the individual file size, but where the components would fit
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - Replace utmp, wtmp, btmp, and lastlog completely with journal
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journalctl: instead --after-cursor= maybe have a --cursor=XYZ+1 syntax?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - tmpfiles: when applying ownership to /run/log/journal, also do this for the journal fails contained in it
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - when a kernel driver logs in a tight loop, we should ratelimit that too.
f47ec8ebb3858553dec870e1c596e39525f46360Lennart Poettering - journald: optionally, log debug messages to /run but everything else to /var
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journald: when we drop syslog messages because the syslog socket is
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering full, make sure to write how many messages are lost as first thing
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering to syslog when it works again.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journald: make sure ratelimit is actually really per-service with the new cgroup changes
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - change systemd-journal-flush into a service that stays around during
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering boot, and causes the journal to be moved back to /run on shutdown,
601d9d6fb394a780765e80581daab850623e9698Josh Triplett so that we don't keep /var busy. This needs to happen synchronously,
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering hence doing this via signals is not going to work.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - document that deps in [Unit] sections ignore Alias= fields in
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering [Install] units of other units, unless those units are disabled
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - man: clarify that time-sync.target is not only sysv compat but also useful otherwise. Same for similar targets
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - document the exit codes when services fail before they are exec()ed
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - document that service reload may be implemented as service reexec
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - document in wiki how to map ical recurrence events to systemd timer unit calendar specifications
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - add a man page containing packaging guidelines and recommending usage of things like Documentation=, PrivateTmp=, PrivateNetwork= and ReadOnlyDirectories=/etc /usr.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - document systemd-journal-flush.service properly
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - documentation: recommend to connect the timer units of a service to the service via Also= in [Install]
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - man: document the very specific env the shutdown drop-in tools live in
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - man: extend runlevel(8) to mention that runlevels suck, and are dead. Maybe add runlevel(7) with a note about that too
8b8f259170e35b93e6c6d1757cb8b835bbdaa40cZbigniew Jędrzejewski-Szmek - man: add more examples to man pages
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - man: maybe sort directives in man pages, and take sections from --help and apply them to man too
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - systemctl list-jobs - show dependencies
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering - add systemctl switch to dump transaction without executing it
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - Add a verbose mode to "systemctl start" and friends that explains what is being done or not done
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - "systemctl disable" on a static unit prints no message and does
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering nothing. "systemctl enable" does nothing, and gives a bad message
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering about it. Should fix both to print nice actionable messages.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - print nice message from systemctl --failed if there are no entries shown, and hook that into ExecStartPre of rescue.service/emergency.service
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - add new command to systemctl: "systemctl system-reexec" which reexecs as many daemons as virtually possible
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - systemctl enable: improve the success messages (i.e. more human readable, less shell-like)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - systemctl enable: fail if target to alias into doesn't exist? maybe show how many units are enabled afterwards?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - systemctl: "Journal has been rotated since unit was started." message is misleading
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - support "systemctl stop foobar@.service" to stop all units matching a certain template
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - Something is wrong with symlink handling of "autovt@.service" in "systemctl list-unit-files"
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - rework wait filter to not require match callback
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - better error message if you run systemctl without systemd running
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - systemctl status output should should include list of triggering units and their status
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - in systemctl list-timers show time triggering units ran last
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* unit install:
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - "systemctl mask" should find all names by which a unit is accessible
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering (i.e. by scanning for symlinks to it) and link them all to /dev/null
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - "systemctl disable" of a unit instance removes all symlinks, but should
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering only remove the instance symlink (systemctl disable of a template
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering unit however should remove them all).
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - systemctl list-unit-files should list generated files (and probably with a new state "generated" for them, or so)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - systemctl: maybe add "systemctl add-wants" or so...
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* introduce ntp.service (or suchlike) as symlink that is used to arbitrate between various NTP implementations
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* deal with sendmail/postfix exclusivity
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - timer events with system resume
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - timer units should get the ability to trigger when:
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering o CLOCK_REALTIME makes jumps (TFD_TIMER_CANCEL_ON_SET)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - Support 2012-02~4 as syntax for specifying the fourth to last day of the month.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - calendarspec: support value ranges with ".." notation. Example: 2013-4..8-1
8b04b925e587ff56568c62ff5ad3f2ea2b34ca7aLennart Poettering - when parsing calendar timestamps support the UTC timezone (even if we won't support arbitrary timezone specs, support UTC itself certainly makes sense), also support syntaxes such as +0200
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - Modulate timer frequency based on battery state
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - anacron-like feature
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* update the kernel's TZ (sys_tz) when DST changes
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* sync down the system time to the RTC when:
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - CLOCK_REALTIME makes jumps (the user explicitely requested a time set)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - DST/timezone changes && ntp is active && RTC-in-localtime (never do it without ntp)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering This takes care of syncing ntpdate updates to the RTC, and DST updates for localtime
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering mode, it will never touch the RTC if the no reliable time source is active or the
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering user did not request anything like it.
90e071d1d59be05fcba66561439c3ca67c80ee20Lennart Poettering* if booted in "quiet" mode, and an error happens, turn on status
90e071d1d59be05fcba66561439c3ca67c80ee20Lennart Poettering output again, so that the emergency mode isn't totally
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers surprising. Also, terminate plymouth.
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers* libunwind support for coredump pattern hook, and includes this in
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers the message for coredumps. After all, libunwind is now capable to
f6113d42d015ad9f3a9e702a09eb8006511a4424Kay Sievers unwind coredumps since a few weeks ago. This probably requires that
f6113d42d015ad9f3a9e702a09eb8006511a4424Kay Sievers we have nice support for multi-line messages on display in
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers logs-show.c. Alternatively: use libelfutil, which seems to be the
7a43e910ce00eef22fd42925ae4c85cbea1b1320Kay Sievers better supported alternative.
c55b1b59b837dfd924b704d457ed77c55f8bfeabLennart Poettering* add libsystemd-password or so to query passwords during boot using the password agent logic
59704f3e937c664f7324bfbb08483c358dfbc4c6Lennart Poettering* If we show an error about a unit (such as not showing up) and it has no Description string, then show a description string generated form the reverse of unit_name_mangle().
9ec82de1725ddaab333149171b790d62c47ae133Lennart Poettering* fedup: add --unit to systemctl switch-root somehow
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering* fedup: don't delete initrd on switch-root
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering* fedup: generator
7f8732835295fce29479b1afc9e8ee801852db09Lennart Poettering* timedated: refuse time changes when NTP is on
7f8732835295fce29479b1afc9e8ee801852db09Lennart Poettering* clean up date formatting and parsing so that all absolute/relative timestamps we format can also be parsed
a19554ed92a7460b4e709cc40c558cde827ab85bLennart Poettering* on shutdown: move utmp, wall, audit logic all into PID 1 (or logind?), get rid of systemd-update-utmp-runlevel
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering* add "provisioning" instructions to setup an empty /etc + /var
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - used to setup a new container from a shared /usr
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - superset of tmpfiles model
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - instructions shipped by packages and stored in /usr/lib/
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - compose /etc/passwd and /etc/group, copy files
603cd8fe07cb03e8b11722d1a732e569e5a46347Lennart Poettering - able to create uid + gid used by packages, for file ownership
6d0274f11547a0f11200bb82bf598a5a253e12cfLennart Poettering* make repeated alt-ctrl-del presses printing a dump, or even force a reboot without
a7a3f28be404875eff20443a0fa8088bcc4c18dfLennart Poettering waiting for the timeout
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* hostnamed: before returning information from /etc/machine-info.conf check the modification data and reread. Similar for localed, ...
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers* currently x-systemd.timeout is lost in the initrd, since crypttab is copied into dracut, but fstab isn't
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - nspawn: consider changing users for -u with /usr/bin/getent, so that NSS resolving works correctly
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - nspawn: --read-only is not applied recursively to submounts
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - bind mount read-only the cgroup tree higher than nspawn
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - nspawn: make it work for dwalsh and shared /usr containers -- tmpfs mounts as command line parameters
9ee58bddeb6eb044753167e0047fe836479ca5dbKay Sievers - refuses to boot containers without /etc/machine-id (OK?), and with empty /etc/machine-id (not OK).
9ee58bddeb6eb044753167e0047fe836479ca5dbKay Sievers - support taking a btrfs snapshot at startup and dropping it afterwards
dcfc4b2e5c1af6375488c00bdc6fb8122f86c4d7Lennart Poettering - maybe: hookup nspawn and PrivateNetwork=yes with "ip netns"
71ef24d09573874c0f7bc323c07c3aec2a458707Lennart Poettering - allow booting disk images with a GPT signature using the bootloaderspec partition uuids
71ef24d09573874c0f7bc323c07c3aec2a458707Lennart Poettering - generate predictable mac addresses for the netdev we create (host0), maybe based on guest's machine
1b89884ba31cbe98f159ce2c7d6fac5f6a57698fLennart Poettering name and machine-id of host (?)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - cryptsetup-generator: allow specification of passwords in crypttab itself
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - move cryptsetup key caching into kernel keyctl?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering https://bugs.freedesktop.org/show_bug.cgi?id=54982
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - support rd.luks.allow-discards= kernel cmdline params in cryptsetup generator
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering* hw watchdog: optionally try to use the preset watchdog timeout instead of always overriding it
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering https://bugs.freedesktop.org/show_bug.cgi?id=54712
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering* after deserializing sockets in socket.c we should reapply sockopts and things
9cb74bcb23dde8488459ca233bf9caee642b8402Zbigniew Jędrzejewski-Szmek* make timer units go away after they elapsed
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* http://lists.freedesktop.org/archives/systemd-devel/2012-September/006502.html
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering (network and remote-fs on shutdown)
a56b63f41dc779a86573ae77814c14c1db156398Lennart Poettering* come up with a nice way to write queue/read_ahead_kb for a block device without interfering with readahead
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* move PID 1 segfaults to /var/lib/systemd/coredump?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* create /sbin/init symlinks from the build system
5f1dac6bf605871615b35891a3966fa474db5b20Lennart Poettering* Query Paul Moore about relabelling socket fds while they are open
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering* allow writing multiple conditions in unit files on one line
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering* explore multiple service instances per listening socket idea
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering* MountFlags=shared acts as MountFlags=slave right now.
a1cccad1fe88ddd6943e18af97cf7f466296970fLennart Poettering* ReadOnlyDirectories= is not applied recursively to submounts
d05c556b6b2a680ec8b51ecbbc99a9ab14c28eedZbigniew Jędrzejewski-Szmek* drop PID 1 reloading, only do reexecing (difficult: Reload()
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering currently is properly synchronous, Reexec() is weird, because we
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering can't delay the response properly until we are back, so instead of
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering being properly synchronous we just keep open the fd and close it
4a30847b9d71e0381948d68279c8f775b9de7850Lennart Poettering when done. That means clients don't get a successful method reply,
4a30847b9d71e0381948d68279c8f775b9de7850Lennart Poettering but much rather a disconnect on success.
5e8b28838e493b59628322b69580097ef7dd9384Lennart Poettering* properly handle loop back mounts via fstab, especially regards to fsck/passno
d87be9b0af81a6e07d4fb3028e45c4409100dc26Lennart Poettering* allow services with no ExecStart= but with an ExecStop=
38a60d7112d33ffd596b23e8df53d75a7c09e71bLennart Poettering* dracut-shutdown needs to be ordered before unmounting /boot
d8b78264a5245307babbf5af8e39d6d4a1ae095fLennart Poettering* initialize the hostname from the fs label of /, if /etc/hostname does not exist?
7560fffcd2531786b9c1ca657667a43e90331326Lennart Poettering* rename "userspace" to "core-os"
0790b9fed42eefc4e22dbbe2337cba9713b7848cLennart Poettering* syscall filter: optionally don't enforce no new privs?
5a7e959984788cf89719dec31999409b63bb802bLennart Poettering* load-fragment: when loading a unit file via a chain of symlinks
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering verify that it isn't masked via any of the names traversed.
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering* introduce Type=pid-file
edca2e2348b314e2d892fe6f8ae276fdc223f014Thomas Hindoe Paaboel Andersen* change Requires=basic.target to RequisiteOverride=basic.target
0790b9fed42eefc4e22dbbe2337cba9713b7848cLennart Poettering* when breaking cycles drop sysv services first, then services from /run, then from /etc, then from /usr
fd4d89b2c0b31da01d134301e30916931ae3c7d9Lennart Poettering* automount: implement expire:
8230e26dc954a40d8c9dbc8ddd9376117021f9d2Lennart Poettering - set superblock timeout AUTOFS_DEV_IOCTL_TIMEOUT_CMD
8230e26dc954a40d8c9dbc8ddd9376117021f9d2Lennart Poettering - periodically run AUTOFS_DEV_IOCTL_EXPIRE_CMD
4d9909c93e9c58789c71b34555a1908307c6849eLennart Poettering - every timeout/4 (original autofs logic)
4d9909c93e9c58789c71b34555a1908307c6849eLennart Poettering - blocking, needs a thread
47ae7201b1df43bd3da83a19e38483b0e5694c99Lennart Poettering - run until -EAGAIN
47ae7201b1df43bd3da83a19e38483b0e5694c99Lennart Poettering - receive expire packet on pipe if kernel tells the timeout is over
88a6c5894c9d3f85d63b87b040c130366b4006ceKay Sievers - call umount
8351ceaea9480d9c2979aa2ff0f4982cfdfef58dLennart Poettering - answer expire packet on pipe with AUTOFS_DEV_IOCTL_{READY,FAIL}_CMD
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - AUTOFS_DEV_IOCTL_EXPIRE_CMD returns
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - remove src/udev/udev-builtin-firmware.c (CONFIG_FW_LOADER_USER_HELPER=n)
c66d36e5b5ae81f3c5297d6dacadc13c88c530f6Lennart Poettering - move to LGPL
9946996cda11a18b44d82344676e5a0e96339408Lennart Poettering - kill scsi_id
9946996cda11a18b44d82344676e5a0e96339408Lennart Poettering - add trigger --subsystem-match=usb/usb_device device
9946996cda11a18b44d82344676e5a0e96339408Lennart Poettering - reimport udev db after MOVE events for devices without dev_t
3471bedc005fab03f40b99bf6599645330adcd9eLennart Poettering* when a service has the same env var set twice we actually store it twice and return that in systemctl show -p... We should only show the last setting
35eb6b124ebdf82bd77aad6e44962a9a039c4d33Lennart Poettering* introduce mix of BindTo and Requisite
5b40d33761376354116a8cddb9b9fbdb6c4727d6Lennart Poettering* add DeleteSocketsOnStop=yes|no option to socket units
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* There's currently no way to cancel fsck (used to be possible via C-c or c on the console)
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* add option to sockets to avoid activation. Instead just drop packets/connections, see http://cyberelk.net/tim/2012/02/15/portreserve-systemd-solution/
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* default unix qlen is too small (10). bump sysctl? add sockopt?
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* save coredump in Windows/Mozilla minidump format
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* support crash reporting operation modes (https://live.gnome.org/GnomeOS/Design/Whiteboards/ProblemReporting)
e01a15b71e18bf2008aec7e75041ffa42eb80b80Kay Sievers* default to actual 32bit PIDs, via /proc/sys/kernel/pid_max
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* be able to specify a forced restart of service A where service B depends on, in case B
3f60bcb5e69846fe8a3156ca1c9a7e0813ac158aKay Sievers needs to be auto-respawned?
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* when a bus name of a service disappears from the bus make sure to queue further activation requests
169c4f65131fbc7bcb51e7d5487a715cdcd0e0ebLennart Poettering - check systemd-tmpfiles for selinux context hookup for mknod(), symlink() and similar
169c4f65131fbc7bcb51e7d5487a715cdcd0e0ebLennart Poettering - apply "x" on "D" too (see patch from William Douglas)
fb0864e7b9c6d26269ccea6ec5c0fd921c029781Lennart Poettering* for services: don't set $HOME in services unless requested
9586cdfab6a2638078702b7fea7e16b3a71899e2Lennart Poettering* hide PAM/TCPWrap options in fragment parser when compile time disabled
7f110ff9b8828b477e87de7b28c708cf69a3d008Lennart Poettering* when we automatically restart a service, ensure we restart its rdeps, too.
d0e5a33374cee92962af33dfc03873e470b014f6Lennart Poettering* allow Type=simple with PIDFile=
d0e5a33374cee92962af33dfc03873e470b014f6Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=723942
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering* move PAM code into its own binary
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering* implement Register= switch in .socket units to enable registration
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering in Avahi, RPC and other socket registration services.
65c0cf7108ae3537a357c74b4586a783baba82f9Lennart Poettering* make sure systemd-ask-password-wall does not shutdown systemd-ask-password-console too early
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers* support sd_notify() style notification when reload begins (RELOADING=1), reload is finished (READY=1), and add ReloadSignal= then to use in combination
ad740100d108282d0244d5739d4dcc86fe4c5fdeLennart Poettering* support sd_notify() style notification when shutting down, to make auto-exit bus services work (STOPPING=1)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* verify that the AF_UNIX sockets of a service in the fs still exist
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering when we start a service in order to avoid confusion when a user
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering assumes starting a service is enough to make it accessible
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* support User= and Group= attributes for AF_UNIX sockets. (difficult, requires NSS from PID 1?)
ff01d048b4c1455241c894cf7982662c9d28fd34Lennart Poettering* Make it possible to set the keymap independently from the font on
ff01d048b4c1455241c894cf7982662c9d28fd34Lennart Poettering the kernel cmdline. Right now setting one resets also the other.
72b9ed828bd22f3ddd74b6853c183eebf006d6d8Lennart Poettering* and a dbus call to generate target from current state
1d6702e8d3877c0bebf3ac817dc45ff72f5ecfa9Lennart Poettering - drop /.readahead on bigger upgrades with yum
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering - move readahead files into /var (look for them with .path units?)
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering - readahead: use BTRFS_IOC_DEFRAG_RANGE instead of BTRFS_IOC_DEFRAG ioctl, with START_IO
1258097cd3cdbc5dd3d264850119e553a29c5068Lennart Poettering - readahead: when bumping /sys readahead variable save mtime and compare later to detect changes
1258097cd3cdbc5dd3d264850119e553a29c5068Lennart Poettering - readahead: make use of EXT4_IOC_MOVE_EXT, as used by http://e4rat.sourceforge.net/
a4c279f87451186b8beb1b8cc21c7cad561ecf4bLennart Poettering* add support for /bin/mount -s
7c697168102cb64c5cb65a542959684014da99c7Lennart Poettering* GC unreferenced jobs (such as .device jobs)
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering* write blog stories about:
8d0e38a2b966799af884e78a54fd6a2dffa44788Lennart Poettering - hwdb: what belongs into it, lsusb
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering - enabling dbus services
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering - status update
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering - how to make changes to sysctl and sysfs attributes
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering - remote access
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - how to pass throw-away units to systemd, or dynamically change properties of existing units
a012ab5293a28af93454b3105ca85ca148b1c11fDave Reisner - how to integrate cgconfig and suchlike with systemd
88a07670cfa974a605c7c7b520b8a3135fce37f9Lennart Poettering - testing with Harald's awesome test kit
88a07670cfa974a605c7c7b520b8a3135fce37f9Lennart Poettering - auto-restart
88a07670cfa974a605c7c7b520b8a3135fce37f9Lennart Poettering - how to develop against journal browsing APIs
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering - the journal HTTP iface
916abb21d0a6653e0187b91591e492026886b0a4Lennart Poettering - non-cgroup resource management
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - dynamic resource management with cgroups
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - refreshed, longer missions statement
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - calendar time events
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - init=/bin/sh vs. "emergency" mode, vs. "rescue" mode, vs. "multi-user" mode, vs. "graphical" mode, and the debug shell
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - how to create your own target
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - instantiated apache, dovecot and so on
b23de6af893c11da4286bc416455cd0926d1532eLennart Poettering - hooking a script into various stages of shutdown/rearly booot
21bdae12e11ae20460715475d8a0c991f15464acLennart Poettering* allow port=0 in .socket units
9534ce54858c67363b841cdbdc315140437bfdb4Lennart Poettering* support systemd.mask= on the kernel command line.
796b06c21b62d13c9021e2fbd9c58a5c6edb2764Kay Sievers* recreate systemd's D-Bus private socket file on SIGUSR2
68c7d001f4117f0c3d0a4582e32cbb03ae5fac57Lennart Poettering* Support --test based on current system state
253ee27a0c7a410d27d490bb79ea97caed6a2b68Lennart Poettering* investigate whether the gnome pty helper should be moved into systemd, to provide cgroup support.
5d0fcd7c8d29340ac9425c309e8ac436a9af699cLennart Poettering* maybe introduce ExecRestartPre=
f530371f1f85a070d7d0fb5112146a43533ae00bLennart Poettering* dot output for --test showing the 'initial transaction'
a19554ed92a7460b4e709cc40c558cde827ab85bLennart Poettering* fingerprint.target, wireless.target, gps.target, netdevice.target
a74a8793b04de9886b4f6987b9cb86fa02c73520Lennart Poettering* io priority during initialization
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* drop cap bounding set in readahead and other services
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* systemd-python:
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - figure out a simple way to wait for journal events in a way that
73090dc815390f4fca4e3ed8a7e1d3806605daaaLennart Poettering - add documentation to systemd.daemon
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering - plot per-process IO utilization
3f7a8c4e9f1d3ce48919e24eb2c9d56dd6fd88d8Kay Sievers - group processes based on service association (cgroups)
260abb780a135e4cae8c10715c7e85675efc345aLennart Poettering - document initcall_debug
2791a8f8dc8764a9247cdba3562bd4c04010f144Lennart Poettering - kernel cmdline "bootchart" option for simplicity?
a8f11321c209830a35edd0357e8def5d4437d854Lennart Poettering* udev-link-config: