diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-09 14:17:52 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-09 14:17:52 +0100 |
commit | e1b2b49465615727a2c3883d06d1b9ff339aec67 (patch) | |
tree | 0ef0343f266a9393ae5e8bbc91d6202d6d3988b8 /src/main.c | |
parent | 0658666bacde7decbc362f0f589fe6aa5251faba (diff) |
systemd: show status when run with plymouth, and don't start plymouth a second time when it is already running
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 0f82b706c6..d1eeffb12e 100644 --- a/src/main.c +++ b/src/main.c @@ -985,6 +985,11 @@ int main(int argc, char *argv[]) { if (parse_argv(argc, argv) < 0) goto finish; + /* If Plymouth is being run make sure we show the status, so + * that there's something nice to see when people press Esc */ + if (access("/dev/.systemd/plymouth", F_OK) >= 0) + arg_show_status = true; + if (arg_action == ACTION_HELP) { retval = help(); goto finish; |