diff options
author | Arian van Putten <arian.vanputten@gmail.com> | 2019-08-12 19:36:56 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-08-22 13:39:54 +0200 |
commit | 0e4a4f56bebc94a99134d79c5e1148aa787fc4dc (patch) | |
tree | 56ad0f0c4cc2f01ec4b0464b3b0a1108edba9e65 /src/journal/journalctl.c | |
parent | core: TAKE_PTR in timer_add_one_calendar_spec (diff) | |
download | systemd-0e4a4f56bebc94a99134d79c5e1148aa787fc4dc.tar.xz systemd-0e4a4f56bebc94a99134d79c5e1148aa787fc4dc.zip |
journalctl: Make journalctl --user-unit= match on _SYSTEMD_USER_SLICE
journalctl --unit= already did this, and allows you to tail all the logs
for a certain slice easily. It seemed only natural to make --user-unit
behave in a similar way.
The _SYSTEMD_USER_SLICE field was not documented as being added by
journald, so I have added that to the documentation too.
Furthermore, I have documented the existing behaviour of --unit= and the
new behaviour of --user-unit=
The behaviour was actually not documented before, so I am also OK with
removing the match for the --unit= command instead. The user would then
have to manually provide _SYSTEMD_SLICE= filter to journalctl in both
cases. Both options work for me.
Diffstat (limited to '')
-rw-r--r-- | src/journal/journalctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 764b3c217e..6d6bb1cf63 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -1539,7 +1539,8 @@ static int get_possible_units( "_SYSTEMD_USER_UNIT\0" \ "USER_UNIT\0" \ "COREDUMP_USER_UNIT\0" \ - "OBJECT_SYSTEMD_USER_UNIT\0" + "OBJECT_SYSTEMD_USER_UNIT\0" \ + "_SYSTEMD_USER_SLICE\0" static int add_units(sd_journal *j) { _cleanup_strv_free_ char **patterns = NULL; |