TODO revision 7bb2954901b2e568efaf67254e480032e0958cad
7c66aeba0f28cb82027d6015405ed71afa3b6059Kay Sievers* enabling an instance unit creates a pointless link, and
7c66aeba0f28cb82027d6015405ed71afa3b6059Kay Sievers the unit will be started with getty@getty.service:
c904f64d84db8c4eebedf210ba10893f19ba05edLennart Poettering $ systemctl enable getty@.service
c904f64d84db8c4eebedf210ba10893f19ba05edLennart Poettering 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
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers anymore. Only the .mount unit was still around.
9a36607584bbd1d78775353e022a51794b4e27b1Lennart Poettering* properly handle .mount unit state tracking when two mount points are stacked one on top of another on the exact same mount point.
20ffc4c4a9226b0e45cc02ad9c0108981626c0bbKay Sievers* shorten the message to sane length:
7bcd865d386d96caac83cb1c589fdb8f9ce3b081Zbigniew 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.
2f8d077ece024b985f2501dc8c904c2d29967acbKay Sievers* systemctl --root=container/ set-default ... is totally borked.
2f8d077ece024b985f2501dc8c904c2d29967acbKay Sievers* Fedora: when installing fedora with yum --installroot /var/run is a directory, not a symlink
81d112a8f0522a09fcfe317f420363a2b728137cLennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=975864
2d19f95caef8668aeb5c05a18b39c6b79f710856Kay Sievers* Fedora: add an rpmlint check that verifies that all unit files in the RPM are listed in %systemd_post macros.
a4cc3e5ccc0a3033d764a9eb3ae5ee90db560682Lennart Poettering* Fedora: post FPC ticket to move add %tmpfiles_create to the packaging guidelines
0028da22f194f7c0ca7169a48cf32e1bc0f9138aLennart PoetteringPreparation for 209:
7e2c2bcf1285d124c9c656ff46cafa4db0a987c9Lennart Poettering* Review new libraries
7b4da18c1717f811bae67ea3d39290495857c03eLennart Poettering* libsystemd-journal returns the object created as first param in sd_journal_new(), sd_bus_new() and suchlike as last...
205b7fa46594b38901636b167b02a8725d915b79Lennart Poettering* systemctl (and possibly related tools): support a new switch that
81d112a8f0522a09fcfe317f420363a2b728137cLennart Poettering allows enumerating units in local containers recursively. "systemctl
81d112a8f0522a09fcfe317f420363a2b728137cLennart Poettering list-units -R" or so should not only lists on the host, but also the
81d112a8f0522a09fcfe317f420363a2b728137cLennart Poettering services in all containers in a pretty way, to give an overview of
81d112a8f0522a09fcfe317f420363a2b728137cLennart Poettering the entire system. Also, maybe add "systemctl list-machines" which
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering works like "machinectl list" but includes information about the
990ffbe5cffe7f11a8d3ab2258a85fc52b97bf60Lennart Poettering health status of each registered machine. For that we should
dd359de89b1fbabf6f4eb5003d2b5a806b6185c1Lennart Poettering probably implement something that encodes the system health status
dd359de89b1fbabf6f4eb5003d2b5a806b6185c1Lennart Poettering in a single enum state, i.e. something like a system-wide state
dd359de89b1fbabf6f4eb5003d2b5a806b6185c1Lennart Poettering starting → running → failed → stopping, that is based on the current
61a9648f022049ac14c5667958752e8dcff857c1Lennart Poettering job queue and a check for failed services. Maybe then change
61a9648f022049ac14c5667958752e8dcff857c1Lennart Poettering "systemctl status" without args to output this state along with a
61a9648f022049ac14c5667958752e8dcff857c1Lennart Poettering selection of other data, such as the uptime or so.
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* generalize ConditionXYZ= logic and make it available in networkd's
6bc80e94b66e6b008cdc21101fc7409ebcb279dbLennart Poettering .network, .netdev, .network files, too. This is particularly useful
6bc80e94b66e6b008cdc21101fc7409ebcb279dbLennart Poettering to match on containers with ConditionVirtualization to
487060c2394b7703e59650ef332053645ffae2a3Lennart Poettering conditionalize network setups for containers
54c31a79f72ff57ac8eba089acacc4ab482b745dLennart Poettering* doc: remove documentation for .include, drop-in snippets are the
54c31a79f72ff57ac8eba089acacc4ab482b745dLennart Poettering better replacement.
826872b61e4857dfffe63ba84e2b005623baecd6Lennart Poettering* Add a seccomp-based filter for socket() calls to limit services to
54c31a79f72ff57ac8eba089acacc4ab482b745dLennart Poettering specific address families (for example: AF_UNIX), inspired by
826872b61e4857dfffe63ba84e2b005623baecd6Lennart Poettering Android's sandboxing
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* implement Distribute= in socket units to allow running multiple
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering service instances processing the listening socket, and open this up
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering for ReusePort=
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* add a timelimit to generator invocation
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* socket units: support creating sockets in different namespace,
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering opening it up for JoinsNamespaceOf=. This would require to fork off
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering a tiny process that joins the namespace and creates/binds the socket
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering and passes this back to PID1 via SCM_RIGHTS. This also could be used
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering to allow Chown/chgrp on sockets without requiring NSS in PID 1.
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* New service property: maximum CPU and wallclock runtime for a service
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* introduce bus call FreezeUnit(s, b), as well as "systemctl freeze
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering $UNIT" and "systemctl thaw $UNIT" as wrappers around this. The calls
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering should SIGSTOP all unit processes in a loop until all processes of
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering it are fully stopped. This can later be used for app management by
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering desktop UIs such as gnome-shell to freeze apps that are not visible
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering on screen, not unlike how job control works on the shell
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* machinectl bash completion is missing
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* busctl bash and zsh completions are outdated
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - implement system-wide DefaultCPUAccounting=1 switch (and similar for blockio, memory?)
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - implement per-slice CPUFairScheduling=1 switch
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - handle jointly mounted controllers correctly
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - introduce high-level settings for RT budget, swappiness
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - how to reset dynamically changed unit cgroup attributes sanely?
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - when reloading configuration, apply new cgroup configuration
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - when recursively showing the cgroup hierarchy, optionally also show
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering the hierarchies of child processes
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering* transient units:
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - allow creating auxiliary units with the same call
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - add field to transient units that indicate whether systemd or somebody else saves/restores its settings, for integration with libvirt
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - ensure scope units may be started only a single time
3ac525bd75f0009954c6dde3461b6a640d936ee3Lennart Poettering* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
cbb7712189527f9f483321607e44c4ead3dd11b8Lennart Poettering* when we detect low battery and no AC on boot, show pretty splash and refuse boot
cbb7712189527f9f483321607e44c4ead3dd11b8Lennart Poettering* machined, localed: when we try to kill an empty cgroup, generate an ESRCH error over the bus
dd359de89b1fbabf6f4eb5003d2b5a806b6185c1Lennart Poettering* libsystemd-journal, libsystemd-login, libudev: add calls to easily attach these objects to sd-event event loops
d01a73b6396f57792113c1b5df6e8492fc703e5eLennart Poettering* be more careful what we export on the bus as (usec_t) 0 and (usec_t) -1
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering* unify dispatch table in systemctl_main() and friends
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering* socket-proxyd: Use sd-resolve to resolve the server address
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart 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
f8aeee1f1fe432924b355f48f01f09c9a552ed97Lennart Poettering* move config_parse_path_strv() out of conf-parser.c
490b7e47093d491a2bdb1084fe92b796f4e07eefLennart Poettering* After coming back from hibernation reset hibernation swap partition using the /dev/snapshot ioctl APIs
490b7e47093d491a2bdb1084fe92b796f4e07eefLennart Poettering* If we try to find a unit via a dangling symlink, generate a clean
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering error. Currently, we just ignore it and read the unit from the search
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* refuse boot if /etc/os-release is missing or /etc/machine-id cannot be set up
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* given that logind now lets PID 1 do all nasty work, we can
e41814846c19a48f4490169d82e359e005c4db45Lennart Poettering probably reduce the capability set it retains substantially.
c0fe5db522b52f27e030655ce2c03e05cbbc1558Kay Sievers (we need CAP_SYS_ADMIN for drmSetMaster(), so maybe not worth it)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* btrfs raid assembly: some .device jobs stay stuck in the queue
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart 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
3040728b6691ea2e9df3a2060e2d49a792bbaedaLennart Poettering* man: the documentation of Restart= currently is very misleading and suggests the tools from ExecStartPre= might get restarted.
8ed206517c2be381324ac5832bf34cc14024270eLennart Poettering* load .d/*.conf dropins for device units
e6c6e7afffa80ad74efdb1ddfa815294624f1608Lennart Poettering* gparted needs to disable auto-activation of mount units somehow, or
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering maybe we should stop doing auto-activation of this after boot
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering entirely. https://bugzilla.gnome.org/show_bug.cgi?id=701676
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering Maybe take a BSD lock at the disk device node and teach udev to
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering check for that and suppress event handling.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* something pulls in pcre as shared object dependency into our daemons such as hostnamed.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* allow implementation of InaccessibleDirectories=/ plus
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering ReadOnlyDirectories=... for whitelisting files for a service.
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering - when kdbus doesn't take our message without memfds, try again with memfds
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - implement monitor logic
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - see if we can drop more message validation on the sending side
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - add API to clone sd_bus_message objects
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - systemd-bus-proxyd needs to enforce good old XML policy
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - upload minimal kdbus policy into the kernel at boot
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart 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...
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering - longer term: priority inheritance
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - check sender of response messages
c06bf414042cd1bf94e0af63e9e2a0c291bfc546Kay Sievers - dbus spec updates:
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - kdbus mapping
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - "const" properties (posted)
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - port exit-on-idle logic to byebye ioctl
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - update systemd.special(7) to mention that dbus.socket is only about the compatibility socket now
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - allow updating attach flags during runtime
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - pid1: peek into activating message when activating a service
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - test bloom filter generation indexes
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - introduce sd_bus_emit_object_added()/sd_bus_emit_object_removed() that automatically includes the build-in interfaces in the list
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - port to sd-resolve for connecting to TCP dbus servers
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - constructors for bus messages should probably not be OK with a NULL bus pointer
f47ec8ebb3858553dec870e1c596e39525f46360Lennart Poettering - allow multiple signal handlers per signal?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* in the final killing spree, detect processes from the root directory, and
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering complain loudly if they have argv[0][0] == '@' set.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=961044
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* investigate endianness issues of UUID vs. GUID
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* dbus: when a unit failed to load (i.e. is in UNIT_ERROR state), we
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering should be able to safely try another attempt when the bus call LoadUnit() is invoked.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* add a pam module that passes the hdd passphrase into the PAM stack and then expires it, for usage by gdm auto-login.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* add a pam module that on password changes updates any LUKS slot where the password matches
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* maybe add a generator that looks for "systemd.run=" on the kernel cmdline for container usercases...
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* timedatctl, localectl: possibly make some commands work without the daemon, for chroot situations...
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* timedatectl: print a nicer message when enabling ntp fails because ntpd/chrony are not installed
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* cgtop: make cgtop useful in a container
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - add 'set -e' to scripts in test/
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - make stuff in test/ work with separate output dir
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* systemctl delete x.snapshot leaves no trace in logs (at least at default level).
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* make the coredump collector tool move itself into the user's cgroup
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering so that the coredump is properly written to the user's own journal
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* seems that when we follow symlinks to units we prefer the symlink
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering destination path over /etc and /usr. We shouldn't do that. Instead
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering /etc should always override /run+/usr and also any symlink
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* when isolating, try to figure out a way how we implicitly can order
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering all units we stop before the isolating unit...
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* add ConditionArchitecture= or so
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* teach ConditionKernelCommandLine= globs or regexes (in order to match foobar={no,0,off})
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* after all byte-wise realloc() is slow, even on glibc, so i guess we
8b04b925e587ff56568c62ff5ad3f2ea2b34ca7aLennart Poettering need manual exponential loops after all
7361c3b4e1e28a7eb4354a3da354b22e79782141Lennart Poettering* BootLoaderSpec: drop allowing ext234 for $BOOT. Clarify that the
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering kernel has to be in $BOOT. Clarify that the boot loader should be
e673ad0415d89c322e5b1a121e411f1b1d8075c0Lennart Poettering installed to the ESP. Define a way how an installer can figure out
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering whether a BLS compliant boot loader is installed.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* think about requeuing jobs when daemon-reload is issued? usecase:
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering the initrd issues a reload after fstab from the host is accessible
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering and we might want to requeue the mounts local-fs acquired through
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering that automatically.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* systemd-inhibit: make taking delay locks useful: support sending SIGINT or SIGTERM on PrepareForSleep()
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers* journal-or-kmsg is currently broken? See reverted commit 4a01181e460686d8b4a543b1dfa7f77c9e3c5ab8.
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers* remove any syslog support from log.c -- we probably can't do this before split-off udev is gone for good
f6113d42d015ad9f3a9e702a09eb8006511a4424Kay Sievers* shutdown logging: store to EFI var, and store to USB stick?
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers* write UI tool that pops up emergency messages from the journal as notification
d2e83c23f5f0cdd3b6ec05c5c40209708721e704Kay Sievers* think about window-manager-run-as-user-service problem: exit 0 → activate shutdown.target; exit != 0 → restart service
6c1703cc35b3a5f93ad3cc813fea10cb9a636102Kay Sievers* use "log level" rather than "log priority" everywhere
6c1703cc35b3a5f93ad3cc813fea10cb9a636102Kay Sievers* timedate: have global on/off switches for auto-time (NTP), and auto-timezone that connman can subscribe to.
59704f3e937c664f7324bfbb08483c358dfbc4c6Lennart Poettering* dev-setup.c: when running in a container, create a tiny stub udev
59704f3e937c664f7324bfbb08483c358dfbc4c6Lennart Poettering database with the systemd tag set for all network interfaces found,
59704f3e937c664f7324bfbb08483c358dfbc4c6Lennart Poettering so that libudev reports them as present, and systemd's .device units
9ec82de1725ddaab333149171b790d62c47ae133Lennart Poettering will be activated.
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering* merge unit_kill_common() and unit_kill_context()
7f8732835295fce29479b1afc9e8ee801852db09Lennart Poettering* introduce ExecCondition= in services
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering - write man page for efi boot generator
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering - honor language efi variables for default language selection (if there are any?)
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering - honor timezone efi variables for default timezone selection (if there are any?)
a19554ed92a7460b4e709cc40c558cde827ab85bLennart Poettering - change bootctl to be backed by systemd-bootd to control temporary and persistent default boot goal plus efi variables
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering* maybe do not install getty@tty1.service symlink in /etc but in /usr?
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering* re-enable "make check" for gtk-doc (broken for unknown reason)
1cb88f2c61f590083847d65cd5a518e834da87d3Lennart Poettering* fstab: add new mount option x-systemd-after=/foobar/waldo to allow manual dependencies to other mount points
603cd8fe07cb03e8b11722d1a732e569e5a46347Lennart Poettering https://bugzilla.redhat.com/show_bug.cgi?id=812826
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* print a nicer explanation if people use variable/specifier expansion in ExecStart= for the first word
6d0274f11547a0f11200bb82bf598a5a253e12cfLennart Poettering* mount: turn dependency information from /proc/self/mountinfo into dependency information between systemd units.
9b27910bb0c23e5225fc1177176e4f9bf9bf787bLennart Poettering - logind: optionally, ignore idle-hint logic for autosuspend, block suspend as long as a session is around
9b27910bb0c23e5225fc1177176e4f9bf9bf787bLennart Poettering - When we update the kernel all kind of hibernation should be prohibited until shutdown/reboot
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - logind: wakelock/opportunistic suspend support
08f9588885c5d65694b324846b0ed19211d2c178Lennart Poettering - Add pretty name for seats in logind
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - logind: allow showing logout dialog from system?
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - logind: add equivalent to sd_pid_get_owner_uid() to the D-Bus API
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - we should probably handle SIGTERM/SIGINT to not leave dot files around, just in case
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - when logging out, remove user-owned sysv and posix IPC objects
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - session scopes/user unit: add RequiresMountsFor for the home directory of the user
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - add Suspend() bus calls which take timestamps to fix double suspend issues when somebody hits suspend and closes laptop quickly.
7d8197d1f25c1291855bb6cffc705444978c6d8dKay Sievers - if pam_systemd is invoked by su from a process that is outside of a
9ee58bddeb6eb044753167e0047fe836479ca5dbKay Sievers any session we should probably just become a NOP, since that's
9ee58bddeb6eb044753167e0047fe836479ca5dbKay Sievers usually not a real user session but just some system code that just
dcfc4b2e5c1af6375488c00bdc6fb8122f86c4d7Lennart Poettering needs setuid().
71ef24d09573874c0f7bc323c07c3aec2a458707Lennart Poettering* exec: when deinitializating a tty device fix the perms and group, too, not only when initializing. Set access mode/gid to 0620/tty.
71ef24d09573874c0f7bc323c07c3aec2a458707Lennart Poettering* service: watchdog logic: for testing purposes allow ping, but do not require pong
1920e37ef9fec04a1fd882f66bfa7a9a5b91c536Lennart Poettering - import and delete pstore filesystem content at startup
1920e37ef9fec04a1fd882f66bfa7a9a5b91c536Lennart Poettering - journald: also get thread ID from client, plus thread name
15abdb9a6f34628b04b887e0b9649fa582d6cd37Lennart Poettering - journal: when waiting for journal additions in the client always sleep at least 1s or so, in order to minimize wakeups
1920e37ef9fec04a1fd882f66bfa7a9a5b91c536Lennart Poettering - add API to close/reopen/get fd for journal client fd in libsystemd-journal.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - fallback to /dev/log based logging in libsystemd-journal, if we can't log natively?
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - declare the local journal protocol stable in the wiki interface chart
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering - journal: reuse XZ context
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart 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
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering "dropped %u messages" not only when we are about to print the next
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering message that works, but alraedy after a short tiemout
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering - check if we can make journalctl by default use --follow mode inside of less if called without args?
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering - maybe add API to send pairs of iovecs via sd_journal_send
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering - journal: when writing journal auto-rotate if time jumps backwards
eb124a97fb72d076014253b1acde69d428f15ecfLennart Poettering - journal: add a setgid "systemd-journal" utility to invoke from libsystemd-journal, which passes fds via STDOUT and does PK access
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - journactl: support negative filtering, i.e. FOOBAR!="waldo",
3679d1126bae52e02f6cd60fca196f616b9e660dLennart 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.
f801968466fed39d50d410b30ac828c26722cc95Lennart Poettering - journald: we currently rotate only after MaxUse+MaxFilesize has been reached.
de34a42bcad31f0648ac0f249801310e0dbf83f9Lennart Poettering - journal: deal nicely with byte-by-byte copied files, especially regards header
de34a42bcad31f0648ac0f249801310e0dbf83f9Lennart Poettering - journal: store euid in journal if it differs from uid
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering - journal: sanely deal with entries which are larger than the individual file size, but where the components would fit
41f9172f427bdbb8221c64029f78364b8dd4e527Lennart Poettering - Replace utmp, wtmp, btmp, and lastlog completely with journal
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering - journalctl: instead --after-cursor= maybe have a --cursor=XYZ+1 syntax?
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering - tmpfiles: when applying ownership to /run/log/journal, also do this for the journal fails contained in it
424a19f8a2061c6b058283228734010b2fa24db4Lennart Poettering - when a kernel driver logs in a tight loop, we should ratelimit that too.
a1cccad1fe88ddd6943e18af97cf7f466296970fLennart Poettering - journald: optionally, log debug messages to /run but everything else to /var
a1cccad1fe88ddd6943e18af97cf7f466296970fLennart Poettering - journald: when we drop syslog messages because the syslog socket is
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering full, make sure to write how many messages are lost as first thing
d05c556b6b2a680ec8b51ecbbc99a9ab14c28eedZbigniew Jędrzejewski-Szmek to syslog when it works again.
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering - journald: make sure ratelimit is actually really per-service with the new cgroup changes
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering - change systemd-journal-flush into a service that stays around during
8556879e0d14925ce897875c6c264368e2d048c2Lennart Poettering boot, and causes the journal to be moved back to /run on shutdown,
4a30847b9d71e0381948d68279c8f775b9de7850Lennart Poettering so that we don't keep /var busy. This needs to happen synchronously,
4a30847b9d71e0381948d68279c8f775b9de7850Lennart Poettering hence doing this via signals is not going to work.
d87be9b0af81a6e07d4fb3028e45c4409100dc26Lennart Poettering - document that deps in [Unit] sections ignore Alias= fields in
d87be9b0af81a6e07d4fb3028e45c4409100dc26Lennart Poettering [Install] units of other units, unless those units are disabled
88f89a9b6d25dfcb89691727c8cdaf01f4090b72Lennart Poettering - man: clarify that time-sync.target is not only sysv compat but also useful otherwise. Same for similar targets
88f89a9b6d25dfcb89691727c8cdaf01f4090b72Lennart Poettering - document the exit codes when services fail before they are exec()ed
38a60d7112d33ffd596b23e8df53d75a7c09e71bLennart Poettering - document that service reload may be implemented as service reexec
38a60d7112d33ffd596b23e8df53d75a7c09e71bLennart Poettering - document in wiki how to map ical recurrence events to systemd timer unit calendar specifications
d8b78264a5245307babbf5af8e39d6d4a1ae095fLennart Poettering - add a man page containing packaging guidelines and recommending usage of things like Documentation=, PrivateTmp=, PrivateNetwork= and ReadOnlyDirectories=/etc /usr.
d8b78264a5245307babbf5af8e39d6d4a1ae095fLennart Poettering - document systemd-journal-flush.service properly
7560fffcd2531786b9c1ca657667a43e90331326Lennart Poettering - man: remove .include documentation, and instead push people to use .d/*.conf
7560fffcd2531786b9c1ca657667a43e90331326Lennart Poettering - documentation: recommend to connect the timer units of a service to the service via Also= in [Install]
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering - man: document the very specific env the shutdown drop-in tools live in
0790b9fed42eefc4e22dbbe2337cba9713b7848cLennart Poettering - man: extend runlevel(8) to mention that runlevels suck, and are dead. Maybe add runlevel(7) with a note about that too
5a7e959984788cf89719dec31999409b63bb802bLennart Poettering - man: add more examples to man pages
5a7e959984788cf89719dec31999409b63bb802bLennart Poettering - man: maybe sort directives in man pages, and take sections from --help and apply them to man too
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering - systemctl list-jobs - show dependencies
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering - add systemctl switch to dump transaction without executing it
edca2e2348b314e2d892fe6f8ae276fdc223f014Thomas Hindoe Paaboel Andersen - Add a verbose mode to "systemctl start" and friends that explains what is being done or not done
68f160039eb78fe122cfe0d4c49695ae91f6f0d1Lennart Poettering - "systemctl disable" on a static unit prints no message and does
0790b9fed42eefc4e22dbbe2337cba9713b7848cLennart Poettering nothing. "systemctl enable" does nothing, and gives a bad message
5aea932fd54db835b77709ddeba30732648aae53Lennart Poettering about it. Should fix both to print nice actionable messages.
5aea932fd54db835b77709ddeba30732648aae53Lennart Poettering - print nice message from systemctl --failed if there are no entries shown, and hook that into ExecStartPre of rescue.service/emergency.service
918943c75fbd9dee87ff396de3a7c63a8d228433Lennart Poettering - add new command to systemctl: "systemctl system-reexec" which reexecs as many daemons as virtually possible
918943c75fbd9dee87ff396de3a7c63a8d228433Lennart Poettering - systemctl enable: improve the success messages (i.e. more human readable, less shell-like)
fd4d89b2c0b31da01d134301e30916931ae3c7d9Lennart Poettering - systemctl enable: fail if target to alias into doesn't exist? maybe show how many units are enabled afterwards?
fd4d89b2c0b31da01d134301e30916931ae3c7d9Lennart Poettering - systemctl: "Journal has been rotated since unit was started." message is misleading
8230e26dc954a40d8c9dbc8ddd9376117021f9d2Lennart Poettering - support "systemctl stop foobar@.service" to stop all units matching a certain template
8230e26dc954a40d8c9dbc8ddd9376117021f9d2Lennart Poettering - Something is wrong with symlink handling of "autovt@.service" in "systemctl list-unit-files"
4d9909c93e9c58789c71b34555a1908307c6849eLennart Poettering - rework wait filter to not require match callback
4d9909c93e9c58789c71b34555a1908307c6849eLennart Poettering - better error message if you run systemctl without systemd running
47ae7201b1df43bd3da83a19e38483b0e5694c99Lennart Poettering - systemctl status output should should include list of triggering units and their status
47ae7201b1df43bd3da83a19e38483b0e5694c99Lennart Poettering - in systemctl list-timers show time triggering units ran last
8351ceaea9480d9c2979aa2ff0f4982cfdfef58dLennart 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)
c66d36e5b5ae81f3c5297d6dacadc13c88c530f6Lennart Poettering - systemctl: maybe add "systemctl add-wants" or so...
c649f72baed31c54c8384c3ca1d203fab6e98d08David Strauss* introduce ntp.service (or suchlike) as symlink that is used to arbitrate between various NTP implementations
be0aa78406c73a6625308dc0672b5ff27ec6f9a8Lennart Poettering* deal with sendmail/postfix exclusivity
9946996cda11a18b44d82344676e5a0e96339408Lennart Poettering - timer events with system resume
3471bedc005fab03f40b99bf6599645330adcd9eLennart Poettering - timer units should get the ability to trigger when:
3471bedc005fab03f40b99bf6599645330adcd9eLennart Poettering o CLOCK_REALTIME makes jumps (TFD_TIMER_CANCEL_ON_SET)
eeb875144e5a80d0521461a139f13fc8014d77d8Lennart Poettering - Support 2012-02~4 as syntax for specifying the fourth to last day of the month.
59cea26a349cfa8db906b520dac72563dd773ff2Lennart Poettering - calendarspec: support value ranges with ".." notation. Example: 2013-4..8-1
35eb6b124ebdf82bd77aad6e44962a9a039c4d33Lennart 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
9473414219330b9febc1d0712bbf49ad74cf962fLennart Poettering - Modulate timer frequency based on battery state
f1a8e221ecacea23883df57951e291a910463948Lennart Poettering - anacron-like feature
7b63bde1ed0d4f30c799c9b4737fa926465929f9Lennart Poettering* update the kernel's TZ (sys_tz) when DST changes
5b40d33761376354116a8cddb9b9fbdb6c4727d6Lennart Poettering* sync down the system time to the RTC when:
b86fa936ce36976cd6a96034cf14ea267695bcb2Lennart Poettering - CLOCK_REALTIME makes jumps (the user explicitely requested a time set)
b86fa936ce36976cd6a96034cf14ea267695bcb2Lennart Poettering - DST/timezone changes && ntp is active && RTC-in-localtime (never do it without ntp)
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers This takes care of syncing ntpdate updates to the RTC, and DST updates for localtime
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers mode, it will never touch the RTC if the no reliable time source is active or the
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers user did not request anything like it.
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* if booted in "quiet" mode, and an error happens, turn on status
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers output again, so that the emergency mode isn't totally
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers surprising. Also, terminate plymouth.
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers* libunwind support for coredump pattern hook, and includes this in
d3a3f22267a7dac426b07a7ed0baa1632f5daf04Kay Sievers the message for coredumps. After all, libunwind is now capable to
465349c06d994dd2cc6b6fc4109ac0b9952d500aLennart Poettering unwind coredumps since a few weeks ago. This probably requires that
06dab8e18aebf822392c7ca66c5bf3c1200fdec8Lennart Poettering we have nice support for multi-line messages on display in
06dab8e18aebf822392c7ca66c5bf3c1200fdec8Lennart Poettering logs-show.c. Alternatively: use libelfutil, which seems to be the
e01a15b71e18bf2008aec7e75041ffa42eb80b80Kay Sievers better supported alternative.
98ef27df896f36f0407eaa7ed9e295203b9c271bLennart Poettering* add libsystemd-password or so to query passwords during boot using the password agent logic
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* 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().
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* fedup: add --unit to systemctl switch-root somehow
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* fedup: don't delete initrd on switch-root
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers* fedup: generator
b8217b7bd5fd171916a095b150fad4c3a37f5a41Kay Sievers* timedated: refuse time changes when NTP is on
068665b6fd9839f27bcace7e8f56c0baa6935272Lennart Poettering* clean up date formatting and parsing so that all absolute/relative timestamps we format can also be parsed
231931ffba1bca9d8759bbd6f797e56f8c6971faLennart Poettering* on shutdown: move utmp, wall, audit logic all into PID 1 (or logind?), get rid of systemd-update-utmp-runlevel
169c4f65131fbc7bcb51e7d5487a715cdcd0e0ebLennart Poettering* add "provisioning" instructions to setup an empty /etc + /var
bd08f2422491169e92dc0899d5ba848fcae4c15cLennart Poettering - used to setup a new container from a shared /usr
bd08f2422491169e92dc0899d5ba848fcae4c15cLennart Poettering - superset of tmpfiles model
fb0864e7b9c6d26269ccea6ec5c0fd921c029781Lennart Poettering - instructions shipped by packages and stored in /usr/lib/
fb0864e7b9c6d26269ccea6ec5c0fd921c029781Lennart Poettering - compose /etc/passwd and /etc/group, copy files
9586cdfab6a2638078702b7fea7e16b3a71899e2Lennart Poettering - able to create uid + gid used by packages, for file ownership
7f110ff9b8828b477e87de7b28c708cf69a3d008Lennart Poettering* make repeated alt-ctrl-del presses printing a dump, or even force a reboot without
7f110ff9b8828b477e87de7b28c708cf69a3d008Lennart Poettering waiting for the timeout
d0e5a33374cee92962af33dfc03873e470b014f6Lennart Poettering* hostnamed: before returning information from /etc/machine-info.conf check the modification data and reread. Similar for localed, ...
d0e5a33374cee92962af33dfc03873e470b014f6Lennart Poettering* currently x-systemd.timeout is lost in the initrd, since crypttab is copied into dracut, but fstab isn't
abd55b16547d0bb0ed1c31e72e16838f0f59f48bKay Sievers - nspawn: consider changing users for -u with /usr/bin/getent, so that NSS resolving works correctly
680a1dbc354b2f437b4e06e27d4c43217977efdfLennart Poettering - nspawn: implement personality changes a la linux32(8)
a6e87e90ede66815989ba2db92a07102a69906feLennart Poettering - nspawn: --read-only is not applied recursively to submounts
88f89a9b6d25dfcb89691727c8cdaf01f4090b72Lennart Poettering - nspawn: make use of device cgroup controller by default
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering - bind mount read-only the cgroup tree higher than nspawn
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering - nspawn: make it work for dwalsh and shared /usr containers -- tmpfs mounts as command line parameters, selinux exec context
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering - refuses to boot containers without /etc/machine-id (OK?), and with empty /etc/machine-id (not OK).
87a8baa35d6d65ac3b58ae8e26e338e67f8ae8edLennart Poettering - support taking a btrfs snapshot at startup and dropping it afterwards
5ba081b0fb02380cee4c2ff5bc7e05f869eb8415Lennart Poettering - maybe: hookup nspawn and PrivateNetwork=yes with "ip netns"
5ba081b0fb02380cee4c2ff5bc7e05f869eb8415Lennart Poettering - allow booting disk images with a GPT signature using the bootloaderspec partition uuids
65c0cf7108ae3537a357c74b4586a783baba82f9Lennart Poettering - cryptsetup-generator: allow specification of passwords in crypttab itself
65c0cf7108ae3537a357c74b4586a783baba82f9Lennart Poettering - move cryptsetup key caching into kernel keyctl?
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers https://bugs.freedesktop.org/show_bug.cgi?id=54982
f957632b960a0a42999b38ded7089fa602b41745Kay Sievers - support rd.luks.allow-discards= kernel cmdline params in cryptsetup generator
ad740100d108282d0244d5739d4dcc86fe4c5fdeLennart Poettering* hw watchdog: optionally try to use the preset watchdog timeout instead of always overriding it
ad740100d108282d0244d5739d4dcc86fe4c5fdeLennart Poettering https://bugs.freedesktop.org/show_bug.cgi?id=54712
7d441ddb5ca090b5a97f58ac4b4d97b3e84fa81eLennart Poettering* after deserializing sockets in socket.c we should reapply sockopts and things
14e639ae7a1dbf156273ce697d30fbc6c6594209Lennart Poettering* make timer units go away after they elapsed
ff01d048b4c1455241c894cf7982662c9d28fd34Lennart Poettering* http://lists.freedesktop.org/archives/systemd-devel/2012-September/006502.html
d3c7d7dd77b2b72315164b672462825cef6c0f9aKay Sievers (network and remote-fs on shutdown)
1d6702e8d3877c0bebf3ac817dc45ff72f5ecfa9Lennart Poettering* come up with a nice way to write queue/read_ahead_kb for a block device without interfering with readahead
1d6702e8d3877c0bebf3ac817dc45ff72f5ecfa9Lennart Poettering* move PID 1 segfaults to /var/lib/systemd/coredump?
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering* create /sbin/init symlinks from the build system
1258097cd3cdbc5dd3d264850119e553a29c5068Lennart Poettering* Query Paul Moore about relabelling socket fds while they are open
a4c279f87451186b8beb1b8cc21c7cad561ecf4bLennart Poettering* allow writing multiple conditions in unit files on one line
7c697168102cb64c5cb65a542959684014da99c7Lennart Poettering* explore multiple service instances per listening socket idea
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering* MountFlags=shared acts as MountFlags=slave right now.
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering* ReadOnlyDirectories= is not applied recursively to submounts
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering* drop PID 1 reloading, only do reexecing (difficult: Reload()
f28f1daf754a9a07de90e6fc4ada581bf5de677dLennart Poettering currently is properly synchronous, Reexec() is weird, because we
88a07670cfa974a605c7c7b520b8a3135fce37f9Lennart Poettering can't delay the response properly until we are back, so instead of
88a07670cfa974a605c7c7b520b8a3135fce37f9Lennart Poettering being properly synchronous we just keep open the fd and close it
88a07670cfa974a605c7c7b520b8a3135fce37f9Lennart Poettering when done. That means clients don't get a successful method reply,
71092d70af35567dd154d3de2ce04ce62e157a7cLennart Poettering but much rather a disconnect on success.
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* properly handle loop back mounts via fstab, especially regards to fsck/passno
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* allow services with no ExecStart= but with an ExecStop=
b44be3ecf6326c27aa2c6c6d1fe34e22e22592a0Lennart Poettering* dracut-shutdown needs to be ordered before unmounting /boot
b23de6af893c11da4286bc416455cd0926d1532eLennart Poettering* initialize the hostname from the fs label of /, if /etc/hostname does not exist?
21bdae12e11ae20460715475d8a0c991f15464acLennart Poettering* rename "userspace" to "core-os"
9534ce54858c67363b841cdbdc315140437bfdb4Lennart Poettering* syscall filter: optionally don't enforce no new privs?
796b06c21b62d13c9021e2fbd9c58a5c6edb2764Kay Sievers* load-fragment: when loading a unit file via a chain of symlinks
68c7d001f4117f0c3d0a4582e32cbb03ae5fac57Lennart Poettering verify that it isn't masked via any of the names traversed.
7a2a0b907b5cc60f5d9a871997d7d6e7f62bf4d8Lennart Poettering* introduce Type=pid-file
5d0fcd7c8d29340ac9425c309e8ac436a9af699cLennart Poettering* change Requires=basic.target to RequisiteOverride=basic.target
8bbabc447b1d913bd21faf97c7b17d20d315d2b4Lennart Poettering* when breaking cycles drop sysv services first, then services from /run, then from /etc, then from /usr
e707c49485b8f4f2ec040d3da232d39153e650b9Lennart Poettering* automount: implement expire:
a19554ed92a7460b4e709cc40c558cde827ab85bLennart Poettering - set superblock timeout AUTOFS_DEV_IOCTL_TIMEOUT_CMD
a73d88fa024b5668ed7dde681e99547d41e6a864Lennart Poettering - periodically run AUTOFS_DEV_IOCTL_EXPIRE_CMD
a74a8793b04de9886b4f6987b9cb86fa02c73520Lennart Poettering - every timeout/4 (original autofs logic)
3040728b6691ea2e9df3a2060e2d49a792bbaedaLennart Poettering - blocking, needs a thread
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - run until -EAGAIN
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - receive expire packet on pipe if kernel tells the timeout is over
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - answer expire packet on pipe with AUTOFS_DEV_IOCTL_{READY,FAIL}_CMD
3679d1126bae52e02f6cd60fca196f616b9e660dLennart Poettering - AUTOFS_DEV_IOCTL_EXPIRE_CMD returns
44143309dd0b37d61d7d842ca58f01a65646ec71Kay Sievers* ExecOnFailure=/usr/bin/foo
3f7a8c4e9f1d3ce48919e24eb2c9d56dd6fd88d8Kay Sievers - remove src/udev/udev-builtin-firmware.c (CONFIG_FW_LOADER_USER_HELPER=n)
260abb780a135e4cae8c10715c7e85675efc345aLennart Poettering - move to LGPL
260abb780a135e4cae8c10715c7e85675efc345aLennart Poettering - kill scsi_id
260abb780a135e4cae8c10715c7e85675efc345aLennart Poettering - add trigger --subsystem-match=usb/usb_device device