2988 Commits

Author SHA1 Message Date
Zbigniew Jędrzejewski-Szmek
93470f0451 Various comment and whitespace cleanups (#39740) 2025-11-17 16:52:38 +01:00
Lennart Poettering
e9ce56c6e6 update TODO 2025-11-17 08:54:06 +01:00
Zbigniew Jędrzejewski-Szmek
cd398158df TODO: add two entries 2025-11-15 16:16:45 +01:00
Lennart Poettering
6850f7f510 update TODO 2025-11-15 07:52:42 +01:00
Lennart Poettering
a1865d8470 update TODO 2025-11-14 23:47:56 +01:00
Lennart Poettering
9a1d72fe99 update TODO 2025-11-04 14:12:39 +01:00
Dimitri John Ledkov
00a5c447a4 TODO: add that libmicrohttpd2 has openssl support (#39433)
For the openssl unification, add note that development release of
libmicrohttpd2 has openssl support.
2025-10-24 11:58:19 +01:00
Yu Watanabe
9b414a38fa tree-wide: drop unused libcap dependencies 2025-10-24 01:52:59 +09:00
Daniel Foster
c7a444a9c1 tree-wide: extend $LISTEN_FDS protocol with $LISTEN_PIDFDID
Although extremely unlikely, there is a race present in solely checking the
$LISTEN_PID environment variable, due to PID recycling. Fix that by introducing
$LISTEN_PIDFDID, which contains the 64-bit ID of a pidfd for the child process
that is not subject to recycling.
2025-10-22 09:34:14 +02:00
Lennart Poettering
1353564b9d update TODO 2025-10-08 12:40:04 +02:00
Lennart Poettering
26cde6f0ce update TODO 2025-09-26 10:03:12 +02:00
Mike Yuan
3b911434d6 TODO: drop completed entry 2025-09-18 20:25:15 +02:00
Lennart Poettering
85a725a942 pcrextend: add documentation for varlink api 2025-09-17 15:42:57 +02:00
Lennart Poettering
6b071ab14a todo - main 2025-09-11 11:30:52 +02:00
Lennart Poettering
c663d7e3ea update TODO 2025-08-26 17:35:58 +02:00
Lennart Poettering
a6d25ebc25 update TODO 2025-08-21 11:44:57 +02:00
Lennart Poettering
b4beaafb24 update TODO 2025-08-14 08:35:15 +02:00
Yu Watanabe
dc1505555b utmp: drop setting runlevel entry in utmp
This removes systemd-update-utmp-runlevel.service and related command.
2025-07-13 05:49:00 +09:00
Lennart Poettering
6a26f25b74 update TODO 2025-07-12 07:22:56 +02:00
Lennart Poettering
6d44b761ea update TODO 2025-07-11 18:17:04 +02:00
Lennart Poettering
309e269606 update TODO 2025-07-08 10:53:58 +02:00
Lennart Poettering
976444f64f update TODO 2025-07-08 09:56:45 +02:00
Mike Yuan
6fbb1abf03 TODO: add future deprecation of DefaultMemoryMin/Low= 2025-07-07 17:57:49 +02:00
Yu Watanabe
0ddf8d9c1d TODO: fix typo 2025-07-06 01:41:14 +09:00
Lennart Poettering
864a5e9ded getty: support /run/issue.d/
By default agetty will not display /run/issue.d/ if /etc/issue exists.
This is quite unfortunate and has actually been fixed upstream in:

508fb0e7ac

However, no release has been tagged with this yet, and it doesn't look
like this will happen any time soon. Hence, for now, let's add a
work-around and manually override the issue files to include.

This should be reverted once a new util-linux/agetty release has been
tagged, and found its way into the relevant distributions. Given this is
mostly about cosmetics we do not have to precisely sync the package
updates on this, but only roughly.
2025-07-03 16:46:28 +02:00
Lennart Poettering
fa34fda2eb update TODO 2025-06-23 14:48:09 +02:00
Lennart Poettering
be7c58353c update TODO 2025-06-21 02:22:28 +09:00
Lennart Poettering
f4bcda39f2 update TODO 2025-06-18 10:29:55 +02:00
Mike Yuan
35462aa14a core/socket: add PassPIDFD= 2025-06-17 13:16:41 +02:00
Lennart Poettering
c4bbaf8ce5 update TODO 2025-06-13 18:47:36 +02:00
Yu Watanabe
b1bfa60254 TODO: drop completed entry 2025-06-06 19:09:49 +09:00
Lennart Poettering
ee96d65e50 update TODO 2025-06-06 12:03:16 +02:00
Lennart Poettering
8e6ceee38b update TODO 2025-06-04 16:28:52 +02:00
Lennart Poettering
83f8c15dea Update TODO 2025-06-02 09:34:59 +02:00
Yu Watanabe
e018cf0c67 TODO: drop entry about removal of unnecessary INTERFACE_OLD check in udevadm trigger
Done by fde9f2bc48.
2025-05-31 03:46:53 +09:00
Lennart Poettering
5b94cdf888 update TODO 2025-05-28 18:29:47 +02:00
Lennart Poettering
a6b5e57274 update TODO 2025-05-26 13:46:51 +02:00
Lennart Poettering
8193066c0f update TODO 2025-05-21 07:13:19 +02:00
Lennart Poettering
18bd6a4d11 update TODO 2025-05-20 22:58:17 +02:00
Lennart Poettering
1619918da7 update TODO 2025-05-15 09:53:30 +02:00
Lennart Poettering
d6319768bd update TODO 2025-05-14 09:36:15 +02:00
Lennart Poettering
bbc4cf83b7 update TODO 2025-05-13 15:39:57 +02:00
Mike Yuan
5b8bcbcf00 core: accept "|" ExecStart= prefix to spawn target user's shell
When switching to another user it's oftentimes desirable to also spawn
the target user's shell. sudo supports this via -i flag, run0 currently
doesn't. We don't want to proactively query NSS ourselves, since
that would fall short when operating remotely. Let's instead teach
the service manager to spawn the command using the user's default shell.

I opted for "|" instead of "." in the end because the latter seems
a bit obscure. But happy to change it to something else if a better option
comes up.
2025-05-07 18:32:19 +02:00
Daan De Meyer
1fbfbe81b5 tree-wide: Get rid of prefix_roota() in favor of path_join()
We deprecated prefix_roota() in favor of chase() and path_join().
Let's finish the removal by replacing the few remaining call sites
with path_join().
2025-05-06 17:40:33 +02:00
Lennart Poettering
82da05e7ef TODO 2025-04-30 10:34:44 +02:00
Michal Koutný
3a4aa7f5b2 update TODO 2025-04-25 06:14:42 +09:00
Lennart Poettering
5d919d8785 update TODO 2025-04-22 18:56:01 +02:00
Daan De Meyer
3bb398c299 resolve,import: always use openssl (#36937) 2025-04-18 15:30:33 +02:00
Lennart Poettering
3d3d8f1dd2 update TODO 2025-04-16 10:48:31 +02:00
Luca Boccassi
9f091f098a TODO: drop getenv item, done where needed 2025-04-12 11:49:00 +01:00