TODO revision 6a8b5fa4635ed858788fb10099ec9b62b3359a0a
c343be283b7152554bac0c02493a4e1759c163f7Kay Sievers* enabling an instance unit creates a pointless link, and
b3ae710c251d0ce5cf2cef63208e325497b5e323Zbigniew Jędrzejewski-Szmek the unit will be started with getty@getty.service:
b3ae710c251d0ce5cf2cef63208e325497b5e323Zbigniew Jędrzejewski-Szmek $ systemctl enable getty@.service
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers ln -s '/usr/lib/systemd/system/getty@.service' '/etc/systemd/system/getty.target.wants/getty@.service'
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers* Dangling symlinks of .automount unit files in .wants/ directories, set up
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers automount points even when the original .automount file did not exist
afe3ab588a6b2992efe5a9b22ed038545ba3cdbfLennart Poettering anymore. Only the .mount unit was still around.
d19e85f0d474ed1882561b458d528cbae49f640eZbigniew Jędrzejewski-Szmek* properly handle .mount unit state tracking when two mount points are stacked one on top of another on the exact same mount point.
d19e85f0d474ed1882561b458d528cbae49f640eZbigniew Jędrzejewski-Szmek* When we detect invalid UTF-8, we cannot use it in an error message:
d19e85f0d474ed1882561b458d528cbae49f640eZbigniew Jędrzejewski-Szmek log...("Path is not UTF-8 clean, ignoring assignment: %s", rvalue);
afe3ab588a6b2992efe5a9b22ed038545ba3cdbfLennart Poettering* shorten the message to sane length:
afea8d3853d0f76b3845729ff00e75d281f43a1bZbigniew Jędrzejewski-Szmek 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.
3e495a6651609d0a45b62aab5c3ed5a3b40e11abZbigniew Jędrzejewski-Szmek* systemctl --root=container/ set-default ... is totally borked.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* ps should gain colums for slice
81429136905a6204875174b60a179333b7f3c9e4Kay Sievers* Fedora: when installing fedora with yum --installroot /var/run is a directory, not a symlink
e7b4d43ec3d5eb0099a3978f98a46f3c15443b23Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=975864
58f55364fa00a6a4706df2c4a01c6967f432e531Lennart Poettering* Fedora: add an rpmlint check that verifies that all unit files in the RPM are listed in %systemd_post macros.
83a1ff25e5228b0a5b2cc942fd4f964d10bb73b0Zbigniew Jędrzejewski-Szmek* Fedora: post FPC ticket to move add %tmpfiles_create to the packaging guidelines
6ce02c2a3a2aa888c3e074ae235d94808a165f9aLennart Poettering - make sure event loop integration works similar to event loop integration in other libs
e342b74468870f2e4f3e15f7277a0adea42183caZbigniew Jędrzejewski-Szmek - maybe drop _free() call, introduce _unref() instead
e342b74468870f2e4f3e15f7277a0adea42183caZbigniew Jędrzejewski-Szmek - sd_resolve_freeanswer() is probably pointless, we don't define such a function for any other return values, but expect people to call free directly
e342b74468870f2e4f3e15f7277a0adea42183caZbigniew Jędrzejewski-Szmek - maybe simplify function calls that take a sd_resolve_query object, to not also require the matching sd_resolve?
036a4773ffa1152e4cabd27473450b8cc01e019bLennart Poettering - maybe drop the "n_proc" parameter to sd_resolve_new()?
036a4773ffa1152e4cabd27473450b8cc01e019bLennart Poettering - change all functions to return "int" and negative errno errors
036a4773ffa1152e4cabd27473450b8cc01e019bLennart Poettering - getnext and getnqueries should be renamed to get_next() and get_n_queries(), i.e. functions that are not modelled directly after the libc counterparts don't need to be a single word...
a88abde72169ddc2df77df3fa5bed30725022253Lennart Poettering* New service property: maximum CPU and wallclock runtime for a service
a88abde72169ddc2df77df3fa5bed30725022253Lennart Poettering* introduce bus call FreezeUnit(s, b), as well as "systemctl freeze
a88abde72169ddc2df77df3fa5bed30725022253Lennart Poettering $UNIT" and "systemctl thaw $UNIT" as wrappers around this. The calls
5ad65d628facbce5219ac2749bc835ab92ca6c39Lennart Poettering should SIGSTOP all unit processes in a loop until all processes of
5ad65d628facbce5219ac2749bc835ab92ca6c39Lennart Poettering it are fully stopped. This can later be used for app management by
f93b36affa5ac5710cd84bfb8ff0dafabe99fbf1Lennart Poettering desktop UIs such as gnome-shell to freeze apps that are not visible
f93b36affa5ac5710cd84bfb8ff0dafabe99fbf1Lennart Poettering on screen, not unlike how job control works on the shell
20760dcf5df7e253c21a51886cdb02dee612730bLennart Poettering* machinectl bash completion is missing
20760dcf5df7e253c21a51886cdb02dee612730bLennart Poettering* busctl bash and zsh completions are outdated
20760dcf5df7e253c21a51886cdb02dee612730bLennart Poettering* Introduce PrivateDevices=yes/no which works like PrivateTmp= but for /dev setting up a tmpfs for it that only includes /dev/null, /dev/zero, /dev/random, /dev/urandom, but nothing else.
df22b0bbfde403b3fa71f3c2f1e2ca38af946388Lennart Poettering* libsystemd-journal returns the object created as first param in sd_journal_new(), sd_bus_new() and suchlike as last...
b9be39bfb4ed8e43a7c445831131e44be998eb32Lennart Poettering - implement system-wide DefaultCPUAccounting=1 switch (and similar for blockio, memory?)
b9be39bfb4ed8e43a7c445831131e44be998eb32Lennart Poettering - implement per-slice CPUFairScheduling=1 switch
b9be39bfb4ed8e43a7c445831131e44be998eb32Lennart Poettering - handle jointly mounted controllers correctly
b9be39bfb4ed8e43a7c445831131e44be998eb32Lennart Poettering - introduce high-level settings for RT budget, swappiness
c05482281c32bd408808b14c5fb03e706e65602dLennart Poettering - how to reset dynamically changed unit cgroup attributes sanely?
c05482281c32bd408808b14c5fb03e706e65602dLennart Poettering - when reloading configuration, apply new cgroup configuration
c05482281c32bd408808b14c5fb03e706e65602dLennart Poettering - when recursively showing the cgroup hierarchy, optionally also show
2aeed6760e9759d95418bdb2e80d0032ffcb768eLennart Poettering the hierarchies of child processes
2aeed6760e9759d95418bdb2e80d0032ffcb768eLennart Poettering* transient units:
2aeed6760e9759d95418bdb2e80d0032ffcb768eLennart Poettering - allow creating auxiliary units with the same call
e0ec8950935ce587935e299c22232fbf4a2664c9Lennart Poettering - add field to transient units that indicate whether systemd or somebody else saves/restores its settings, for integration with libvirt
e0ec8950935ce587935e299c22232fbf4a2664c9Lennart Poettering - ensure scope units may be started only a single time
73cb77549536deab85d8d1261b5381e87d80ab23Lennart Poettering - we probably should replace the left-over uses of strv_append() and replace them by strv_push() or strv_extend()
84bef24dd3ad050bab8ecdcd130d0d9794005fa0Lennart Poettering* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
477e75ef9ea6bb2e7e8cc76278c442942110f227Lennart Poettering* when we detect low battery and no AC on boot, show pretty splash and refuse boot
477e75ef9ea6bb2e7e8cc76278c442942110f227Lennart Poettering* move libasyncns into systemd as libsystemd-asyncns
477e75ef9ea6bb2e7e8cc76278c442942110f227Lennart Poettering* machined, localed: when we try to kill an empty cgroup, generate an ESRCH error over the bus
7dfb0404b3b6882d582a571f61a52b2f56961675Lennart Poettering* libsystemd-journal, libsystemd-login, libudev: add calls to easily attach these objects to sd-event event loops
7dfb0404b3b6882d582a571f61a52b2f56961675Lennart Poettering* be more careful what we export on the bus as (usec_t) 0 and (usec_t) -1
7dfb0404b3b6882d582a571f61a52b2f56961675Lennart Poettering* unify dispatch table in systemctl_main() and friends
2bc39683c0cada86c9dc39e5f3d0ea475cf12e57Lennart Poettering* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
687f6a0ba77872299b9fb1f2f04d31c977088a63Lennart Poettering* socket-proxyd:Use a nonblocking alternative to getaddrinfo
687f6a0ba77872299b9fb1f2f04d31c977088a63Lennart 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
687f6a0ba77872299b9fb1f2f04d31c977088a63Lennart Poettering* Add a new Distribute=$NUMBER key to socket units that makes use of SO_REUSEPORT to distribute network traffic on $NUMBER instances
2bc39683c0cada86c9dc39e5f3d0ea475cf12e57Lennart Poettering* move config_parse_path_strv() out of conf-parser.c
687f6a0ba77872299b9fb1f2f04d31c977088a63Lennart Poettering* After coming back from hibernation reset hibernation swap partition using the /dev/snapshot ioctl APIs
31a11e8f30449a81867e8fd081e3e76cf6664bb4Lennart Poettering* If we try to find a unit via a dangling symlink, generate a clean
dbdee28bfadd6d8bd93cb34c85ce1fc325dd8120Lennart Poettering error. Currently, we just ignore it and read the unit from the search
17fe56148c44dfa5583a8643c1918fd6eccf2aeeLennart Poettering* When a Type=forking service fails and needed another service, that
17fe56148c44dfa5583a8643c1918fd6eccf2aeeLennart Poettering service is not cleaned up again when it has StopWhenUnneeded=yes
17fe56148c44dfa5583a8643c1918fd6eccf2aeeLennart Poettering http://lists.freedesktop.org/archives/systemd-devel/2013-July/012141.html
7687f85ea6bab434324bb985e2898bf6373891bfLennart Poettering* refuse boot if /etc/os-release is missing or /etc/machine-id cannot be set up
7687f85ea6bab434324bb985e2898bf6373891bfLennart Poettering* given that logind now lets PID 1 do all nasty work, we can
02c74033ed65e7825d1b87ee051820c9fbfa0f50Lennart Poettering probably reduce the capability set it retains substantially.
02c74033ed65e7825d1b87ee051820c9fbfa0f50Lennart Poettering (we need CAP_SYS_ADMIN for drmSetMaster(), so maybe not worth it)
c14db9b32ab90738973071d31f259d1a457d7b4aLennart Poettering* btrfs raid assembly: some .device jobs stay stuck in the queue
fa607802f332e06f4044c3eb38dbea41076c803dLennart Poettering* make sure gdm doesn't use multi-user-x but the new default X configuration file, and then remove multi-user-x from systemd
a47e6701bfc45519a4e038daa52e9236e932f59aLennart Poettering* man: the documentation of Restart= currently is very misleading and suggests the tools from ExecStartPre= might get restarted.
b80c66ba9836456de5260e4a1b696ba25561f613Lennart Poettering* load .d/*.conf dropins for device units
bd69054b0987b40a0df87d40772893f6f8a078daLennart Poettering* gparted needs to disable auto-activation of mount units somehow, or
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering maybe we should stop doing auto-activation of this after boot
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering entirely. https://bugzilla.gnome.org/show_bug.cgi?id=701676
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering Maybe take a BSD lock at the disk device node and teach udev to
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering check for that and suppress event handling.
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering* something pulls in pcre as shared object dependency into our daemons such as hostnamed.
de146bb2aac13361ade3050d37696499ac4ca9aeLennart Poettering* allow implementation of InaccessibleDirectories=/ plus
91f4347ef7bde17418b365ed3a97a752fe65bd50Lennart Poettering ReadOnlyDirectories=... for whitelisting files for a service.
de146bb2aac13361ade3050d37696499ac4ca9aeLennart Poettering - let the activator peek the peer connection with KDBUS_CMD_MSG_SRC and log it
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering - when kdbus doesn't take our message without memfds, try again with memfds
c3a0d00d6dd6f5997d673e133ef6f9f856550b0aLennart Poettering - implement monitor logic
82e6c50c473f4be8df77c7a510577f1975eedddbLennart Poettering - see if we can drop more message validation on the sending side
82e6c50c473f4be8df77c7a510577f1975eedddbLennart Poettering - add API to clone sd_bus_message objects
d2f81fb00cc3c49e21b31000ba7d37b81a260257Lennart Poettering - SD_BUS_COMMENT() macro for inclusion in vtables, syntax inspired by gdbus
d2f81fb00cc3c49e21b31000ba7d37b81a260257Lennart Poettering - systemd-bus-proxyd needs to enforce good old XML policy
98cd2651988619bf606f0b27825440c4638a7e0bLennart Poettering - upload minimal kdbus policy into the kernel at boot
b7307642391c8ebb9724c99e6b33239e2c0ff944Lennart 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...
b7307642391c8ebb9724c99e6b33239e2c0ff944Lennart Poettering - longer term:
2a441c8afe7c81f74cc2ceccdf9a71301cd39d4dLennart Poettering * priority queues
2a441c8afe7c81f74cc2ceccdf9a71301cd39d4dLennart Poettering * priority inheritance
2a441c8afe7c81f74cc2ceccdf9a71301cd39d4dLennart Poettering - check sender of response messages
2a441c8afe7c81f74cc2ceccdf9a71301cd39d4dLennart Poettering - dbus spec updates:
2a441c8afe7c81f74cc2ceccdf9a71301cd39d4dLennart Poettering - kdbus mapping
40ff4a4abd76d71408e598ed02d7860b8465fa9aLennart Poettering - "const" properties (posted)
40ff4a4abd76d71408e598ed02d7860b8465fa9aLennart Poettering - port exit-on-idle logic to byebye ioctl
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering - make use of "drop" ioctl in pid 1 bus activation
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering - bus proxy: override unique id sender for messages from driver to match the well-known name
f131770b1465fbf423881f16ba85523a05f846feVeres Lajos - bus driver: GetNameOwner() for "org.freedesktop.DBus" should return "org.freedesktop.DBus"
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering - update systemd.special(7) to mention that dbus.socket is only about the compatibility socket now
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering - allow multiple signal handlers per signal?
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering* in the final killing spree, detect processes from the root directory, and
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering complain loudly if they have argv[0][0] == '@' set.
0a86c1a9d8066267b878dfeddc5e0087dda6a37bLennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=961044
41114e81b562bcee52be1ef94c684ace2362ca54Lennart Poettering* Introduce a way how we can kill the main process of a service with KillSignal, but all processes with SIGKILL later on
e3286870fdf20c3c93e944b24fd9af53620f7dbaLennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=952634
e3286870fdf20c3c93e944b24fd9af53620f7dbaLennart Poettering* maybe add a warning to the unit file parses where the access mode of unit files is nonsensical.
8514b67754c5ff7fa628929b3d27131010c21842Lennart Poettering* investigate endianness issues of UUID vs. GUID
6c78f43c7b0e54e695af49917fda79b584f46830Lennart Poettering* dbus: when a unit failed to load (i.e. is in UNIT_ERROR state), we
6c78f43c7b0e54e695af49917fda79b584f46830Lennart Poettering should be able to safely try another attempt when the bus call LoadUnit() is invoked.
7b0fce617c48eda32b2d4e04b5f0e4376e8c0106Lennart Poettering* add a pam module that passes the hdd passphrase into the PAM stack and then expires it, for usage by gdm auto-login.
7b0fce617c48eda32b2d4e04b5f0e4376e8c0106Lennart Poettering* add a pam module that on password changes updates any LUKS slot where the password matches
b568ef14a75dffb7182e0acbdec743b31df2a597Lennart Poettering* maybe add a generator that looks for "systemd.run=" on the kernel cmdline for container usercases...
264b8070715d2d19344c4991ace21147d998f56dLennart Poettering* timedatctl, localectl: possibly make some commands work without the daemon, for chroot situations...
7e27f3121e5a10629302b5221eb21345f832724aLennart Poettering* timedatectl: print a nicer message when enabling ntp fails because ntpd/chrony are not installed
f81e67f79fa856aa2ecffad4d014772ce981745cLennart Poettering* cgtop: make cgtop useful in a container
d48b7bd271b1e70924c8485d2f95c2f5a1ae77cbLennart Poettering - add 'set -e' to scripts in test/
25e14499c4c5b02229d05a5bc26c3693ade5f987Lennart Poettering - make stuff in test/ work with separate output dir
758c4d7a391c0e024737053c815bf3924653b8c5Lennart Poettering* systemctl delete x.snapshot leaves no trace in logs (at least at default level).
821cc13ddae40fb7608458b44aaa7a3fd33d56d9Lennart Poettering* make the coredump collector tool move itself into the user's cgroup
821cc13ddae40fb7608458b44aaa7a3fd33d56d9Lennart Poettering so that the coredump is properly written to the user's own journal
8483d73ff158ee0d51ccbba09a470cc6ae9b071aLennart Poettering* seems that when we follow symlinks to units we prefer the symlink
8483d73ff158ee0d51ccbba09a470cc6ae9b071aLennart Poettering destination path over /etc and /usr. We shouldn't do that. Instead
8483d73ff158ee0d51ccbba09a470cc6ae9b071aLennart Poettering /etc should always override /run+/usr and also any symlink
25e773eeb4f853804e1bf0dbd9a184f23e9b2a97Kay Sievers* when isolating, try to figure out a way how we implicitly can order
b857e042d621ffb98a652f33850b431fafbece43Lennart Poettering all units we stop before the isolating unit...
6dab5bb18151c80fc39bd51f03dcff40b920de3eLennart Poettering* add ConditionArchitecture= or so
384a4be2b00cb95ce215dd343cc9aa77adc9b1ecLennart Poettering* teach ConditionKernelCommandLine= globs or regexes (in order to match foobar={no,0,off})
706d97503df83d141d241b645d2c920d691b3d62Lennart Poettering* Support SO_REUSEPORT with socket activation:
3bcde97e8502c48b53f7420e2433ca68e601662dLennart Poettering - Let systemd maintain a pool of servers.
3bcde97e8502c48b53f7420e2433ca68e601662dLennart Poettering - Use for seamless upgrades, by running the new server before stopping the
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* after all byte-wise realloc() is slow, even on glibc, so i guess we
533bb267f13e2f7b4d7b78de30e821dc81c82335Lennart Poettering need manual exponential loops after all
b42de08aa4c97636e42c28c7bce08f0d7c2a719aZbigniew Jędrzejewski-Szmek* BootLoaderSpec: drop allowing ext234 for $BOOT. Clarify that the
b42de08aa4c97636e42c28c7bce08f0d7c2a719aZbigniew Jędrzejewski-Szmek kernel has to be in $BOOT. Clarify that the boot loader should be
b42de08aa4c97636e42c28c7bce08f0d7c2a719aZbigniew Jędrzejewski-Szmek installed to the ESP. Define a way how an installer can figure out
202aea456dfb279cd34da7bfd1880f6ac0fd849fLennart Poettering whether a BLS compliant boot loader is installed.
42aeb14a4a0fa7d43da96a8ed0fb0e180a2dd5c8Lennart Poettering* think about requeuing jobs when daemon-reload is issued? usecase:
42aeb14a4a0fa7d43da96a8ed0fb0e180a2dd5c8Lennart Poettering the initrd issues a reload after fstab from the host is accessible
42aeb14a4a0fa7d43da96a8ed0fb0e180a2dd5c8Lennart Poettering and we might want to requeue the mounts local-fs acquired through
14a32924c9b46817c92ae11c1147a59dcb62012bLennart Poettering that automatically.
14a32924c9b46817c92ae11c1147a59dcb62012bLennart Poettering* systemd-inhibit: make taking delay locks useful: support sending SIGINT or SIGTERM on PrepareForSleep()
14a32924c9b46817c92ae11c1147a59dcb62012bLennart Poettering* journal-or-kmsg is currently broken? See reverted commit 4a01181e460686d8b4a543b1dfa7f77c9e3c5ab8.
563b1bdc09efe0cf94dd3f514f30376ca854c1ceLennart Poettering* remove any syslog support from log.c -- we probably can't do this before split-off udev is gone for good
5dcf983854c2e8314dbee239180255490ec8ae1cLennart Poettering* shutdown logging: store to EFI var, and store to USB stick?
5dcf983854c2e8314dbee239180255490ec8ae1cLennart Poettering* write UI tool that pops up emergency messages from the journal as notification
d61bb44a89fde3042c7c15ea4975239f7dcb0cb0Lennart Poettering* think about window-manager-run-as-user-service problem: exit 0 → activate shutdown.target; exit != 0 → restart service
ed220efd6657822332b9563ec53c5ab9f3c33220Lennart Poettering* use "log level" rather than "log priority" everywhere
41488fe9024a8955d19811620fd55dcc56a5b2baLennart Poettering* timedate: have global on/off switches for auto-time (NTP), and auto-timezone that connman can subscribe to.
41488fe9024a8955d19811620fd55dcc56a5b2baLennart Poettering* dev-setup.c: when running in a container, create a tiny stub udev
41488fe9024a8955d19811620fd55dcc56a5b2baLennart Poettering database with the systemd tag set for all network interfaces found,
41488fe9024a8955d19811620fd55dcc56a5b2baLennart Poettering so that libudev reports them as present, and systemd's .device units
41488fe9024a8955d19811620fd55dcc56a5b2baLennart Poettering will be activated.
ca70bec9261977336c94f44d5fcf37e1c495326aLennart Poettering* merge unit_kill_common() and unit_kill_context()
ca70bec9261977336c94f44d5fcf37e1c495326aLennart Poettering* introduce ExecCondition= in services
157a180e4fc827606833a6724834ba7b0246d650Tom Gundersen - write man page for efi boot generator
157a180e4fc827606833a6724834ba7b0246d650Tom Gundersen - honor language efi variables for default language selection (if there are any?)
823f4a91ebd8942a2c1ff31050dc55eaa60f6ffcLukas Nykryn - honor timezone efi variables for default timezone selection (if there are any?)
b873d33ec9583c92a0c2bc6807d010720fa31595Lennart Poettering - change bootctl to be backed by systemd-bootd to control temporary and persistent default boot goal plus efi variables
1dbe0a6efda7b1d35957eab7e1d56a2c69d806d9Lennart Poettering* maybe do not install getty@tty1.service symlink in /etc but in /usr?
9d6db739ce1eaa3eace21801fd606d523b73c8f4Lennart Poettering* re-enable "make check" for gtk-doc (broken for unknown reason)
ff3d6560bead6879a2fed1bf99bfe8273b3723f1Zbigniew Jędrzejewski-Szmek* fstab: add new mount option x-systemd-after=/foobar/waldo to allow manual dependencies to other mount points
151226ab4bf276d60d51864330a99f886b923697Zbigniew Jędrzejewski-Szmek https://bugzilla.redhat.com/show_bug.cgi?id=812826
23c4091dc2b85d117512e89233fdeb47d1ff3d92Lennart Poettering* print a nicer explanation if people use variable/specifier expansion in ExecStart= for the first word
0f47ed0a052c0da743404f23ac3532aaabd23655Lennart Poettering* mount: turn dependency information from /proc/self/mountinfo into dependency information between systemd units.
bc07548926ec5ed7b13df8d3656654f238e0b9a7Lennart Poettering - logind: optionally, ignore idle-hint logic for autosuspend, block suspend as long as a session is around
b6b63571ae3eca1741d54172922961af972b8f20Lennart Poettering - When we update the kernel all kind of hibernation should be prohibited until shutdown/reboot
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering - logind: wakelock/opportunistic suspend support
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering - Add pretty name for seats in logind
3f77a1b19f5a8ce33566f7f6e28e94c08ea30841Kay Sievers - logind: allow showing logout dialog from system?
e2a69298819b58f008be61d314f8ab95ccaec427Lennart Poettering - logind: non-local X11 server handling
e2a69298819b58f008be61d314f8ab95ccaec427Lennart Poettering - logind: add equivalent to sd_pid_get_owner_uid() to the D-Bus API
2834ffe78d7fd8be118429aa1449ac72641638c2Lennart Poettering - pam: when leaving a session explicitly exclude the ReleaseSession() caller process from the killing spree
2834ffe78d7fd8be118429aa1449ac72641638c2Lennart Poettering - we should probably handle SIGTERM/SIGINT to not leave dot files around, just in case
a940778fb1dd16479f455bab3ac6cbdbc5b06165Lennart Poettering - when logging out, remove user-owned sysv and posix IPC objects
a940778fb1dd16479f455bab3ac6cbdbc5b06165Lennart Poettering - session scopes/user unit: add RequiresMountsFor for the home directory of the user
a01647e53727107d82382bc5c9d98c894e8f386cLennart Poettering - add Suspend() bus calls which take timestamps to fix double suspend issues when somebody hits suspend and closes laptop quickly.
3c779fa59d1825d7db2a9516669d34ded7916913Lennart Poettering - if pam_systemd is invoked by su from a process that is outside of a
a940778fb1dd16479f455bab3ac6cbdbc5b06165Lennart Poettering any session we should probably just become a NOP, since that's
a01647e53727107d82382bc5c9d98c894e8f386cLennart Poettering usually not a real user session but just some system code that just
3de03738fc970496d2d3da668c72767a48ccc41bLennart Poettering needs setuid().
2b1c3767515672dfd0f5e0a9c9d7ac3a16a6a361Lennart Poettering* exec: when deinitializating a tty device fix the perms and group, too, not only when initializing. Set access mode/gid to 0620/tty.
37efac5ddb21fd91ed420c070ed07f375e78b3b9Lennart Poettering* service: watchdog logic: for testing purposes allow ping, but do not require pong
7348b3adb324614132cf376f478e883bd7de28f1Lennart Poettering - import and delete pstore filesystem content at startup
e107ed185ef08945102834234a05ec51bb438685Lennart Poettering - journald: also get thread ID from client, plus thread name
e107ed185ef08945102834234a05ec51bb438685Lennart Poettering - journal: when waiting for journal additions in the client always sleep at least 1s or so, in order to minimize wakeups
81429136905a6204875174b60a179333b7f3c9e4Kay Sievers - add API to close/reopen/get fd for journal client fd in libsystemd-journal.
81429136905a6204875174b60a179333b7f3c9e4Kay Sievers - fallback to /dev/log based logging in libsystemd-journal, if we can't log natively?
e107ed185ef08945102834234a05ec51bb438685Lennart Poettering - declare the local journal protocol stable in the wiki interface chart
f598ac3e28b729dd0b1d0a881df3e16465687a2bLennart Poettering - journal: reuse XZ context
11fb37f16ed99c1603c9d770b60ce4953b96a58dLennart Poettering - sd-journal: speed up sd_journal_get_data() with transparent hash table in bg
01083ad094664e5c685060f4fb35a05ea2f212edLennart Poettering - journald: when dropping msgs due to ratelimit make sure to write
01083ad094664e5c685060f4fb35a05ea2f212edLennart Poettering "dropped %u messages" not only when we are about to print the next
edb2935c5c5b95c42b8679086f60da5eafad74cbLennart Poettering message that works, but alraedy after a short tiemout
edb2935c5c5b95c42b8679086f60da5eafad74cbLennart Poettering - check if we can make journalctl by default use --follow mode inside of less if called without args?
769918ecd30c0f7ee6e87b9aa6226d956bd2f530Lennart Poettering - maybe add API to send pairs of iovecs via sd_journal_send
769918ecd30c0f7ee6e87b9aa6226d956bd2f530Lennart Poettering - journal: when writing journal auto-rotate if time jumps backwards
769918ecd30c0f7ee6e87b9aa6226d956bd2f530Lennart Poettering - journal: add a setgid "systemd-journal" utility to invoke from libsystemd-journal, which passes fds via STDOUT and does PK access
769918ecd30c0f7ee6e87b9aa6226d956bd2f530Lennart Poettering - journactl: support negative filtering, i.e. FOOBAR!="waldo",
6a3f892a23db71544d0439355f96c44350dafa8fLennart Poettering and !FOOBAR for events without FOOBAR.
2a781fc9bd33982c81e5ff75974a442a33d4f167Lennart Poettering - journal: send out marker messages every now and then, and immediately sync with fdatasync() afterwards, in order to have hourly guaranteed syncs.
2a781fc9bd33982c81e5ff75974a442a33d4f167Lennart 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.
6a3f892a23db71544d0439355f96c44350dafa8fLennart Poettering - journal: find a way to allow dropping history early, based on priority, other rules
6a3f892a23db71544d0439355f96c44350dafa8fLennart Poettering - journal: When used on NFS, check payload hashes
650264033f2f98f6319513958d94d59078654af8Lennart Poettering - journald: check whether it is OK if the client can still modify delivered journal entries
650264033f2f98f6319513958d94d59078654af8Lennart Poettering - journal live copy, based on libneon (client) and libmicrohttpd (server)
650264033f2f98f6319513958d94d59078654af8Lennart Poettering - journald: add kernel cmdline option to disable ratelimiting for debug purposes
f8901862b2b030921b3d5aba4157044ceab16451Lennart Poettering - refuse taking lower-case variable names in sd_journal_send() and friends.
eda8f06755bd98c4639293c26b856c225f0d1fe1Lennart Poettering - journald: we currently rotate only after MaxUse+MaxFilesize has been reached.
eda8f06755bd98c4639293c26b856c225f0d1fe1Lennart Poettering - journal: deal nicely with byte-by-byte copied files, especially regards header
d4fdc205a4610965cee46408dbd046c922e7620cLennart Poettering - journal: store euid in journal if it differs from uid
d4fdc205a4610965cee46408dbd046c922e7620cLennart Poettering - journal: sanely deal with entries which are larger than the individual file size, but where the components would fit
d4fdc205a4610965cee46408dbd046c922e7620cLennart Poettering - Replace utmp, wtmp, btmp, and lastlog completely with journal
af1082b04a3d45a9b1d796b4271f44e87e307026Lennart Poettering - journalctl: instead --after-cursor= maybe have a --cursor=XYZ+1 syntax?
af1082b04a3d45a9b1d796b4271f44e87e307026Lennart Poettering - tmpfiles: when applying ownership to /run/log/journal, also do this for the journal fails contained in it
af1082b04a3d45a9b1d796b4271f44e87e307026Lennart Poettering - when a kernel driver logs in a tight loop, we should ratelimit that too.
af1082b04a3d45a9b1d796b4271f44e87e307026Lennart Poettering - journald: optionally, log debug messages to /run but everything else to /var
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering - journald: when we drop syslog messages because the syslog socket is
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering full, make sure to write how many messages are lost as first thing
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering to syslog when it works again.
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering - journald: make sure ratelimit is actually really per-service with the new cgroup changes
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering - change systemd-journal-flush into a service that stays around during
488ad3b32a7e2b5b1380abf4a15e5f65fa65f3feLennart Poettering boot, and causes the journal to be moved back to /run on shutdown,
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering so that we don't keep /var busy. This needs to happen synchronously,
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering hence doing this via signals is not going to work.
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering - document that deps in [Unit] sections ignore Alias= fields in
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering [Install] units of other units, unless those units are disabled
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering - man: clarify that time-sync.target is not only sysv compat but also useful otherwise. Same for similar targets
09ecd746c9d6581664873674c2188f8c93ed7780Lennart Poettering - document the exit codes when services fail before they are exec()ed
09ecd746c9d6581664873674c2188f8c93ed7780Lennart 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 - man: remove .include documentation, and instead push people to use .d/*.conf
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - documentation: recommend to connect the timer units of a service to the service via Also= in [Install]
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - man: document the very specific env the shutdown drop-in tools live in
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - man: extend runlevel(8) to mention that runlevels suck, and are dead. Maybe add runlevel(7) with a note about that too
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - man: add more examples to man pages
0bee65f0622c4faa8ac8ae771cc0c8a936dfa284Lennart Poettering - man: maybe sort directives in man pages, and take sections from --help and apply them to man too
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - systemctl list-jobs - show dependencies
ebcf1f97de4f6b1580ae55eb56b1a3939fe6b602Lennart Poettering - add systemctl switch to dump transaction without executing it
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering - Add a verbose mode to "systemctl start" and friends that explains what is being done or not done
47c94a96df29080f8b3a97e7362df4e9c6ba3265Lennart Poettering - "systemctl disable" on a static unit prints no message and does
718db96199eb307751264e4163555662c9a389faLennart Poettering nothing. "systemctl enable" does nothing, and gives a bad message
718db96199eb307751264e4163555662c9a389faLennart 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
718db96199eb307751264e4163555662c9a389faLennart Poettering - add new command to systemctl: "systemctl system-reexec" which reexecs as many daemons as virtually possible
718db96199eb307751264e4163555662c9a389faLennart Poettering - systemctl enable: improve the success messages (i.e. more human readable, less shell-like)
718db96199eb307751264e4163555662c9a389faLennart Poettering - systemctl enable: fail if target to alias into doesn't exist? maybe show how many units are enabled afterwards?
966204e010ed432a1d7a0481d41a326d8ec7b0c8Lennart Poettering - systemctl: "Journal has been rotated since unit was started." message is misleading
966204e010ed432a1d7a0481d41a326d8ec7b0c8Lennart Poettering - support "systemctl stop foobar@.service" to stop all units matching a certain template
94676f3e9352cbf1f72e0a512ee0d2ed83ff676dLennart Poettering - Something is wrong with symlink handling of "autovt@.service" in "systemctl list-unit-files"
6fd4d0209827e5c3e52fa8c7144852f550f8f95cLennart Poettering - rework wait filter to not require match callback
416446221d905b6815175dc4d525d27f8ae43d1bLennart Poettering - better error message if you run systemctl without systemd running
416446221d905b6815175dc4d525d27f8ae43d1bLennart Poettering - systemctl status output should should include list of triggering units and their status
7f79cd7109a60810140a045cc725291fc5515264Lennart Poettering - in systemctl list-timers show time triggering units ran last
19aadacf92ad86967ffb678e37b2ff9e83cb9480Jan Engelhardt* unit install:
19aadacf92ad86967ffb678e37b2ff9e83cb9480Jan Engelhardt - "systemctl mask" should find all names by which a unit is accessible
df5f6971e6e15b4632884916c71daa076c8bae96Lennart Poettering (i.e. by scanning for symlinks to it) and link them all to /dev/null
df5f6971e6e15b4632884916c71daa076c8bae96Lennart Poettering - "systemctl disable" of a unit instance removes all symlinks, but should
fcba531ed4c6e6f8f21d8ca4e3a56e3162b1c578Lennart Poettering only remove the instance symlink (systemctl disable of a template
fcba531ed4c6e6f8f21d8ca4e3a56e3162b1c578Lennart Poettering unit however should remove them all).
6aaa8c2f783cd1b3ac27c5ce40625d032e7e3d71Zbigniew Jędrzejewski-Szmek - systemctl list-unit-files should list generated files (and probably with a new state "generated" for them, or so)
c3bb87dbab8b79bb9253407cb5b7f3e6fe8db395Lennart Poettering - systemctl: maybe add "systemctl add-wants" or so...
18d4e7c26e7806ac363d19989df7144d5058ce41Lennart Poettering* introduce ntp.service (or suchlike) as symlink that is used to arbitrate between various NTP implementations
bdeeb6b543a2a2d0a494f17b85f1498859cdfc2fLennart Poettering* deal with sendmail/postfix exclusivity
4e09014daf8f98584b3f15e64e93bed232e70a6bLennart Poettering - timer events with system resume
4e09014daf8f98584b3f15e64e93bed232e70a6bLennart Poettering - timer units should get the ability to trigger when:
4e09014daf8f98584b3f15e64e93bed232e70a6bLennart Poettering o CLOCK_REALTIME makes jumps (TFD_TIMER_CANCEL_ON_SET)
6bb648a16ae4a682ad4784412af706d2e6a3e4daTom Gundersen o DST changes
fa607802f332e06f4044c3eb38dbea41076c803dLennart Poettering - Support 2012-02~4 as syntax for specifying the fourth to last day of the month.
d0928791499734e202460d5c027b5d3e0d28e7abLennart Poettering - calendarspec: support value ranges with ".." notation. Example: 2013-4..8-1
7212c6083a5577eabc96c35c9db4c19c113cae93Lennart 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
1f140dd8b048c5f5599a886b8c4d20f3f1065774David Herrmann - Modulate timer frequency based on battery state
57f2a947270faf65e1876797b930e3f6d60ebd06Lennart Poettering - anacron-like feature
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* update the kernel's TZ (sys_tz) when DST changes
dc17bcef197a0d5ee798cce59c40e4f5e85c24f6Lennart Poettering* sync down the system time to the RTC when:
80caea6cc72ebd311a311b1527cc6b87201c13bfLennart Poettering - CLOCK_REALTIME makes jumps (the user explicitely requested a time set)
ab9716c2489f9141ed13ec22dbb216b3e6fbd6b5Lennart Poettering - DST/timezone changes && ntp is active && RTC-in-localtime (never do it without ntp)
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering This takes care of syncing ntpdate updates to the RTC, and DST updates for localtime
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering mode, it will never touch the RTC if the no reliable time source is active or the
df98a87ba389bdfc0359beedf47557411f3af434Lennart Poettering user did not request anything like it.
2ecfc64e59b5e4e96bed6f68bd36b612ef77a146Lennart Poettering* if booted in "quiet" mode, and an error happens, turn on status
6a8b5fa4635ed858788fb10099ec9b62b3359a0aLennart Poettering output again, so that the emergency mode isn't totally
69727e6dc69ae5d9b5ae3681723778a3faa354e9Lennart Poettering surprising. Also, terminate plymouth.
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* libunwind support for coredump pattern hook, and includes this in
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering the message for coredumps. After all, libunwind is now capable to
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering unwind coredumps since a few weeks ago. This probably requires that
b568ef14a75dffb7182e0acbdec743b31df2a597Lennart Poettering we have nice support for multi-line messages on display in
0ad68f8743f3baaa7cd8ac7a2275459ae0f7b96aLennart Poettering logs-show.c. Alternatively: use libelfutil, which seems to be the
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering better supported alternative.
12179984a38fe74581333fbcdc11c822d81f505fLennart Poettering* add libsystemd-password or so to query passwords during boot using the password agent logic
eb01ba5de14859d7a94835ab9299de40132d549aLennart 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().
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering* fedup: add --unit to systemctl switch-root somehow
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering* fedup: don't delete initrd on switch-root
154ff088d371bee5651eaa2bc9bde8a34c185656Lennart Poettering* fedup: generator
e8a7a315391a6a07897122725cd707f4e9ce63d7Lennart Poettering* timedated: refuse time changes when NTP is on
461bd8e47cafacfcd38389e7558330bfb6e902adLennart Poettering* clean up date formatting and parsing so that all absolute/relative timestamps we format can also be parsed
ab8e074ce25b9947314c69e17afe1bd2527ee26dLennart Poettering* on shutdown: move utmp, wall, audit logic all into PID 1 (or logind?), get rid of systemd-update-utmp-runlevel
ab8e074ce25b9947314c69e17afe1bd2527ee26dLennart Poettering* add "provisioning" instructions to setup an empty /etc + /var
ab8e074ce25b9947314c69e17afe1bd2527ee26dLennart Poettering - used to setup a new container from a shared /usr
b454b11220e87add6d0f011695c7912b009c853dLennart Poettering - superset of tmpfiles model
b454b11220e87add6d0f011695c7912b009c853dLennart Poettering - instructions shipped by packages and stored in /usr/lib/
4ff49cb63075aba646b578f2516b37a8dfd5a65bLennart Poettering - compose /etc/passwd and /etc/group, copy files
4ff49cb63075aba646b578f2516b37a8dfd5a65bLennart Poettering - able to create uid + gid used by packages, for file ownership
fff87a35d9e26c0d4ea41273a963c0eb20e18da4Zbigniew Jędrzejewski-Szmek* make repeated alt-ctrl-del presses printing a dump, or even force a reboot without
fff87a35d9e26c0d4ea41273a963c0eb20e18da4Zbigniew Jędrzejewski-Szmek waiting for the timeout
b5c03638d48c07aa0eaf13b5f54000c7133e1883Lennart Poettering* hostnamed: before returning information from /etc/machine-info.conf check the modification data and reread. Similar for localed, ...
b5c03638d48c07aa0eaf13b5f54000c7133e1883Lennart Poettering* currently x-systemd.timeout is lost in the initrd, since crypttab is copied into dracut, but fstab isn't
eece8c6fb5f4d354dcef6fd369e876c4f3a3f163Lennart Poettering - nspawn: consider changing users for -u with su, so that NSS resolving works correctly
eece8c6fb5f4d354dcef6fd369e876c4f3a3f163Lennart Poettering - nspawn: implement personality changes a la linux32(8)
eece8c6fb5f4d354dcef6fd369e876c4f3a3f163Lennart Poettering - nspawn: --read-only is not applied recursively to submounts
356ce9915ab1a4a1e6dc26954df34936a69e7c12Lennart Poettering - nspawn: make use of device cgroup controller by default
356ce9915ab1a4a1e6dc26954df34936a69e7c12Lennart Poettering - bind mount read-only the cgroup tree higher than nspawn
c144692179098c1861f2aeafc67689a74439cf4cLennart Poettering - nspawn: investigate whether we can support the same as LXC's
c144692179098c1861f2aeafc67689a74439cf4cLennart Poettering lxc.network.type=phys mode, and pass through entire network
c144692179098c1861f2aeafc67689a74439cf4cLennart Poettering interfaces to the container
c144692179098c1861f2aeafc67689a74439cf4cLennart Poettering - nspawn: maybe explicitly reset loginuid?
795607b22308f5b92073b012e43be1892fdd97c0Lennart Poettering - nspawn: make it work for dwalsh and shared /usr containers -- tmpfs mounts as command line parameters, selinux exec context
0be8342c04bbf129b4a21e5073eacccbbce4e896Lennart Poettering - refuses to boot containers without /etc/machine-id (OK?), and with empty /etc/machine-id (not OK).
0be8342c04bbf129b4a21e5073eacccbbce4e896Lennart Poettering - add an option to nspawn that uses seccomp to make socket(AF_NETLINK,
0be8342c04bbf129b4a21e5073eacccbbce4e896Lennart Poettering SOCK_RAW, NETLINK_AUDIT) fail the the appropriate error code that
0be8342c04bbf129b4a21e5073eacccbbce4e896Lennart Poettering makes the audit userspace to think auditing is not available in the
e5ec62c56963d997edaffa904af5dc45dac23988Lennart Poettering - support taking a btrfs snapshot at startup and dropping it afterwards
826872b61e4857dfffe63ba84e2b005623baecd6Lennart Poettering - cryptsetup-generator: allow specification of passwords in crypttab itself
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt - move cryptsetup key caching into kernel keyctl?
826872b61e4857dfffe63ba84e2b005623baecd6Lennart Poettering https://bugs.freedesktop.org/show_bug.cgi?id=54982
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - support rd.luks.allow-discards= kernel cmdline params in cryptsetup generator
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* hw watchdog: optionally try to use the preset watchdog timeout instead of always overriding it
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering https://bugs.freedesktop.org/show_bug.cgi?id=54712
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* after deserializing sockets in socket.c we should reapply sockopts and things
490b7e47093d491a2bdb1084fe92b796f4e07eefLennart Poettering* make timer units go away after they elapsed
490b7e47093d491a2bdb1084fe92b796f4e07eefLennart Poettering* http://lists.freedesktop.org/archives/systemd-devel/2012-September/006502.html
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering (network and remote-fs on shutdown)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* come up with a nice way to write queue/read_ahead_kb for a block device without interfering with readahead
e41814846c19a48f4490169d82e359e005c4db45Lennart Poettering* move PID 1 segfaults to /var/lib/systemd/coredump?
e9fd44b728ff1fc0d1f24fccb87a767f6865df27Lennart Poettering* create /sbin/init symlinks from the build system
e9fd44b728ff1fc0d1f24fccb87a767f6865df27Lennart Poettering* Query Paul Moore about relabelling socket fds while they are open
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* allow writing multiple conditions in unit files on one line
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* explore multiple service instances per listening socket idea
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* shutdown: don't read-only mount anything when running in container
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* MountFlags=shared acts as MountFlags=slave right now.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* ReadOnlyDirectories= is not applied recursively to submounts
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* drop PID 1 reloading, only do reexecing (difficult: Reload()
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering currently is properly synchronous, Reexec() is weird, because we
e5ec62c56963d997edaffa904af5dc45dac23988Lennart Poettering can't delay the response properly until we are back, so instead of
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering being properly synchronous we just keep open the fd and close it
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering when done. That means clients don't get a successful method reply,
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering but much rather a disconnect on success.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* properly handle loop back mounts via fstab, especially regards to fsck/passno
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* allow services with no ExecStart= but with an ExecStop=
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* dracut-shutdown needs to be ordered before unmounting /boot
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* initialize the hostname from the fs label of /, if /etc/hostname does not exist?
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* rename "userspace" to "core-os"
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* syscall filter:
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering - syscall filter: add knowledge about compat syscalls
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering - syscall filter: don't enforce no new privs?
b568ef14a75dffb7182e0acbdec743b31df2a597Lennart Poettering - syscall filter: option to return EPERM rather than SIGSYS?
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - syscall filter: port to libseccomp
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - system-wide seccomp filter
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* load-fragment: when loading a unit file via a chain of symlinks
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering verify that it isn't masked via any of the names traversed.
57f2a947270faf65e1876797b930e3f6d60ebd06Lennart Poettering* introduce Type=pid-file
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* change Requires=basic.target to RequisiteOverride=basic.target
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* when breaking cycles drop sysv services first, then services from /run, then from /etc, then from /usr
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* automount: implement expire:
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - set superblock timeout AUTOFS_DEV_IOCTL_TIMEOUT_CMD
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - periodically run AUTOFS_DEV_IOCTL_EXPIRE_CMD
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - every timeout/4 (original autofs logic)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - blocking, needs a thread
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - run until -EAGAIN
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - receive expire packet on pipe if kernel tells the timeout is over
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - answer expire packet on pipe with AUTOFS_DEV_IOCTL_{READY,FAIL}_CMD
f47ec8ebb3858553dec870e1c596e39525f46360Lennart Poettering - AUTOFS_DEV_IOCTL_EXPIRE_CMD returns
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - remove src/udev/udev-builtin-firmware.c (CONFIG_FW_LOADER_USER_HELPER=n)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - move to LGPL
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - kill scsi_id
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - add trigger --subsystem-match=usb/usb_device device
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart 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
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* introduce mix of BindTo and Requisite
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* add DeleteSocketsOnStop=yes|no option to socket units
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* There's currently no way to cancel fsck (used to be possible via C-c or c on the console)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* add option to sockets to avoid activation. Instead just drop packets/connections, see http://cyberelk.net/tim/2012/02/15/portreserve-systemd-solution/
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* default unix qlen is too small (10). bump sysctl? add sockopt?
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* save coredump in Windows/Mozilla minidump format
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* support crash reporting operation modes (https://live.gnome.org/GnomeOS/Design/Whiteboards/ProblemReporting)
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* default to actual 32bit PIDs, via /proc/sys/kernel/pid_max
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* be able to specify a forced restart of service A where service B depends on, in case B
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering needs to be auto-respawned?
279f036675536d55c901562b49f9df146af1a0e3Lennart Poettering* when a bus name of a service disappears from the bus make sure to queue further activation requests
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - check systemd-tmpfiles for selinux context hookup for mknod(), symlink() and similar
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - apply "x" on "D" too (see patch from William Douglas)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* for services: don't set $HOME in services unless requested
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* hide PAM/TCPWrap options in fragment parser when compile time disabled
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering* when we automatically restart a service, ensure we restart its rdeps, too.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* allow Type=simple with PIDFile=
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=723942
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* move PAM code into its own binary
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* implement Register= switch in .socket units to enable registration
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering in Avahi, RPC and other socket registration services.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* make sure systemd-ask-password-wall does not shutdown systemd-ask-password-console too early
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* support sd_notify() style notification when reload begins (RELOADING=1), reload is finished (READY=1), and add ReloadSignal= then to use in combination
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* support sd_notify() style notification when shutting down, to make auto-exit bus services work (STOPPING=1)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* verify that the AF_UNIX sockets of a service in the fs still exist
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering when we start a service in order to avoid confusion when a user
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt 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?)
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* Make it possible to set the keymap independently from the font on
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering the kernel cmdline. Right now setting one resets also the other.
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* and a dbus call to generate target from current state
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering - drop /.readahead on bigger upgrades with yum
8b04b925e587ff56568c62ff5ad3f2ea2b34ca7aLennart Poettering - move readahead files into /var (look for them with .path units?)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - readahead: use BTRFS_IOC_DEFRAG_RANGE instead of BTRFS_IOC_DEFRAG ioctl, with START_IO
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - readahead: when bumping /sys readahead variable save mtime and compare later to detect changes
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - readahead: make use of EXT4_IOC_MOVE_EXT, as used by http://e4rat.sourceforge.net/
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering* add support for /bin/mount -s
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt* GC unreferenced jobs (such as .device jobs)
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers* write blog stories about:
a19554ed92a7460b4e709cc40c558cde827ab85bLennart Poettering - hwdb: what belongs into it, lsusb
a19554ed92a7460b4e709cc40c558cde827ab85bLennart Poettering - enabling dbus services
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - status update
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - how to make changes to sysctl and sysfs attributes
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - remote access
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt - how to pass throw-away units to systemd, or dynamically change properties of existing units
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering - how to integrate cgconfig and suchlike with systemd
603cd8fe07cb03e8b11722d1a732e569e5a46347Lennart Poettering - testing with Harald's awesome test kit
a7a3f28be404875eff20443a0fa8088bcc4c18dfLennart Poettering - auto-restart
a7a3f28be404875eff20443a0fa8088bcc4c18dfLennart Poettering - how to develop against journal browsing APIs
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - the journal HTTP iface
08f9588885c5d65694b324846b0ed19211d2c178Lennart Poettering - non-cgroup resource management
9ee58bddeb6eb044753167e0047fe836479ca5dbKay Sievers - dynamic resource management with cgroups
9ee58bddeb6eb044753167e0047fe836479ca5dbKay Sievers - refreshed, longer missions statement
dcfc4b2e5c1af6375488c00bdc6fb8122f86c4d7Lennart Poettering - calendar time events
71ef24d09573874c0f7bc323c07c3aec2a458707Lennart Poettering - init=/bin/sh vs. "emergency" mode, vs. "rescue" mode, vs. "multi-user" mode, vs. "graphical" mode, and the debug shell
71ef24d09573874c0f7bc323c07c3aec2a458707Lennart Poettering - how to create your own target
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt - instantiated apache, dovecot and so on
1b89884ba31cbe98f159ce2c7d6fac5f6a57698fLennart Poettering - hooking a script into various stages of shutdown/rearly booot
9cb74bcb23dde8488459ca233bf9caee642b8402Zbigniew Jędrzejewski-Szmek* allow port=0 in .socket units
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* support systemd.mask= on the kernel command line.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* recreate systemd's D-Bus private socket file on SIGUSR2
5f1dac6bf605871615b35891a3966fa474db5b20Lennart Poettering* Support --test based on current system state
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering* investigate whether the gnome pty helper should be moved into systemd, to provide cgroup support.
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering* maybe introduce ExecRestartPre=
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering* dot output for --test showing the 'initial transaction'
4a30847b9d71e0381948d68279c8f775b9de7850Lennart Poettering - postfix, saslauthd
5e8b28838e493b59628322b69580097ef7dd9384Lennart Poettering - libvirtd (/var/run/libvirt/libvirt-sock-ro)
5e8b28838e493b59628322b69580097ef7dd9384Lennart Poettering - bluetoothd (/var/run/sdp! @/org/bluez/audio!)
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering* fingerprint.target, wireless.target, gps.target, netdevice.target
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering* io priority during initialization
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt* drop cap bounding set in readahead and other services
d28315e4aff91560ed4c2fc9f876ec8bfc559f2dJan Engelhardt* systemd-python:
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering - figure out a simple way to wait for journal events in a way that
fd4d89b2c0b31da01d134301e30916931ae3c7d9Lennart Poettering - add documentation to systemd.daemon
47ae7201b1df43bd3da83a19e38483b0e5694c99Lennart Poettering - plot per-process IO utilization
88a6c5894c9d3f85d63b87b040c130366b4006ceKay Sievers - group processes based on service association (cgroups)
8351ceaea9480d9c2979aa2ff0f4982cfdfef58dLennart Poettering - document initcall_debug
9946996cda11a18b44d82344676e5a0e96339408Lennart Poettering - kernel cmdline "bootchart" option for simplicity?
9946996cda11a18b44d82344676e5a0e96339408Lennart Poettering* udev-link-config:
3471bedc005fab03f40b99bf6599645330adcd9eLennart Poettering - Make sure ID_PATH is always exported and complete for
3471bedc005fab03f40b99bf6599645330adcd9eLennart Poettering network devices where possible, so we can safely rely
59cea26a349cfa8db906b520dac72563dd773ff2Lennart Poettering on Path= matching
35eb6b124ebdf82bd77aad6e44962a9a039c4d33Lennart Poettering - Check if Driver= is broken, or just my driver (bcma)
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers - improve container support, and add support for entering containers when reading
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers - add support for more attribute types
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers - add more keys to [Route] and [Address] sections
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers - add support for more DHCPv4 options (and, longer term, other kinds of dynamic config)
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers - allow opting out of receiving DNS servers over DHCPv4
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers - add proper initrd support (in particular generate .network/.link files based on /proc/cmdline)
a888b352eb53b07daa24fa859ceeb254336b293dLennart Poettering - natively watch for dbus-*.service symlinks (PENDING)
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers - teach dbus to activate all services it finds in /etc/systemd/services/org-*.service
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* fix alsa mixer restore to not print error when no config is stored
e8d842a0d0b39f298e1e7f70d29759e50b2b16d4Tom Gundersen* make cryptsetup lower --iter-time
b8217b7bd5fd171916a095b150fad4c3a37f5a41Kay Sievers* patch kernel for xattr support in /dev, /proc/, /sys?
169c4f65131fbc7bcb51e7d5487a715cdcd0e0ebLennart Poettering* NTP: the kernel's 11-minutes-mode syncs the system time to the RTC, but only
fb0864e7b9c6d26269ccea6ec5c0fd921c029781Lennart Poettering in an ~30 minutes window. It does not adjust larger differences. Find a way
fb0864e7b9c6d26269ccea6ec5c0fd921c029781Lennart Poettering to tell the kernel, to always do a full time sync when the RTC is in UTC and
7f110ff9b8828b477e87de7b28c708cf69a3d008Lennart Poettering we are in 11-minutes-mode. When we trust the system time to NTP we also want
7f110ff9b8828b477e87de7b28c708cf69a3d008Lennart Poettering the RTC to sync up.
d0e5a33374cee92962af33dfc03873e470b014f6Lennart Poettering* kernel: add device_type = "fb", "fbcon" to class "graphics"
d0e5a33374cee92962af33dfc03873e470b014f6Lennart Poettering* drop accountsservice's StandardOutput=syslog and Type=dbus fields
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering* dbus upstream still refers to dbus.target and shouldn't
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering* dbus: in fedora, make /var/lib/dbus/machine-id a symlink to /etc/machine-id
65c0cf7108ae3537a357c74b4586a783baba82f9Lennart Poettering* add "# export SYSTEMD_PAGER=" to bash login
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers* /usr/bin/service should actually show the new command line
ad740100d108282d0244d5739d4dcc86fe4c5fdeLennart Poettering* fedora: suggest auto-restart on failure, but not on success and not on coredump. also, ask people to think about changing the start limit logic. Also point people to RestartPreventExitStatus=, SuccessExitStatus=
f38afcd0c7f558ca5bf0854b42f8c6954f8ad7f3Lennart Poettering* fedora: F20: go timer units all the way, leave cron.daily for cron
614cc34f3a2a7c64a21c3f5256f2e2b2c1de1d51Zbigniew Jędrzejewski-Szmek* neither pkexec nor sudo initialize environ[] from the PAM environment?
7d441ddb5ca090b5a97f58ac4b4d97b3e84fa81eLennart Poettering* fedora: update policy to declare access mode and ownership of unit files to root:root 0644, and add an rpmlint check for it
ff01d048b4c1455241c894cf7982662c9d28fd34Lennart Poettering* look for close() vs. close_nointr() vs. close_nointr_nofail()
72b9ed828bd22f3ddd74b6853c183eebf006d6d8Lennart Poettering* check for strerror(r) instead of strerror(-r)
1d6702e8d3877c0bebf3ac817dc45ff72f5ecfa9Lennart Poettering* Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
1258097cd3cdbc5dd3d264850119e553a29c5068Lennart Poettering* set_put(), hashmap_put() return values check. i.e. == 0 doesn't free()!
1258097cd3cdbc5dd3d264850119e553a29c5068Lennart Poettering* use secure_getenv() instead of getenv() where appropriate
a4c279f87451186b8beb1b8cc21c7cad561ecf4bLennart Poettering* link up selected blog stories from man pages and unit files Documentation= fields
8d0e38a2b966799af884e78a54fd6a2dffa44788Lennart PoetteringScheduled for removal or fixing:
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering* xxxOverridable dependencies (probably: fix)