diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-08 15:09:12 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-08 23:13:45 +0100 |
commit | 8b0cc9a36c8f92f010f2e8465942d2cd7c580d78 (patch) | |
tree | 23e8d9ec1c90c7bb5c07c82587246fdff7bbc99f /src/systemctl/systemctl.c | |
parent | 3c7560019e623e6e0d03a860b4f19a3a8715feca (diff) |
machinectl: show most recent log output in "machinectl status", too
Diffstat (limited to 'src/systemctl/systemctl.c')
-rw-r--r-- | src/systemctl/systemctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 20c765e532..b44c6d78ba 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -197,10 +197,10 @@ static void polkit_agent_open_if_enabled(void) { static OutputFlags get_output_flags(void) { return arg_all * OUTPUT_SHOW_ALL | + arg_full * OUTPUT_FULL_WIDTH | (!on_tty() || pager_have()) * OUTPUT_FULL_WIDTH | on_tty() * OUTPUT_COLOR | - !arg_quiet * OUTPUT_WARN_CUTOFF | - arg_full * OUTPUT_FULL_WIDTH; + !arg_quiet * OUTPUT_WARN_CUTOFF; } static int translate_bus_error_to_exit_status(int r, const sd_bus_error *error) { |