Blame SOURCES/0705-journalctl-allow-file-directory-with-boot-or-list-bo.patch
|
|
c62b8e |
From 916af326c9d2eabcdda2e048102f0bf83f76caca Mon Sep 17 00:00:00 2001
|
|
|
c62b8e |
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
|
c62b8e |
Date: Tue, 28 Jun 2016 15:27:07 -0400
|
|
|
c62b8e |
Subject: [PATCH] journalctl: allow --file/--directory with --boot or
|
|
|
c62b8e |
--list-boots
|
|
|
c62b8e |
|
|
|
c62b8e |
It works mostly fine, and can be quite useful to examine data from another
|
|
|
c62b8e |
system.
|
|
|
c62b8e |
|
|
|
c62b8e |
OTOH, a single boot id doesn't make sense with --merge, so mixing with --merge
|
|
|
c62b8e |
is still not allowed.
|
|
|
c62b8e |
|
|
|
c62b8e |
(cherry picked from commit f3bd7561c54dea82b128d06f6b269a4951ae2855)
|
|
|
c62b8e |
|
|
|
c62b8e |
Resolves: #1463678
|
|
|
c62b8e |
---
|
|
|
c62b8e |
src/journal/journalctl.c | 4 ++--
|
|
|
c62b8e |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
c62b8e |
|
|
|
c62b8e |
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c
|
|
|
c62b8e |
index 1e6d0761c7..b9549602d9 100644
|
|
|
c62b8e |
--- a/src/journal/journalctl.c
|
|
|
c62b8e |
+++ b/src/journal/journalctl.c
|
|
|
c62b8e |
@@ -814,8 +814,8 @@ static int parse_argv(int argc, char *argv[]) {
|
|
|
c62b8e |
return -EINVAL;
|
|
|
c62b8e |
}
|
|
|
c62b8e |
|
|
|
c62b8e |
- if ((arg_boot || arg_action == ACTION_LIST_BOOTS) && (arg_file || arg_directory || arg_merge)) {
|
|
|
c62b8e |
- log_error("Using --boot or --list-boots with --file, --directory or --merge is not supported.");
|
|
|
c62b8e |
+ if ((arg_boot || arg_action == ACTION_LIST_BOOTS) && arg_merge) {
|
|
|
c62b8e |
+ log_error("Using --boot or --list-boots with --merge is not supported.");
|
|
|
c62b8e |
return -EINVAL;
|
|
|
c62b8e |
}
|
|
|
c62b8e |
|