diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-09-01 21:05:06 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-09-01 21:05:06 +0200 |
commit | 27d340c772fb1b251085dba7bd5420484f7c5892 (patch) | |
tree | 40444adbc2ac122fa9ebfbe3d471f8a7f0864725 /src/main.c | |
parent | fe7ac310219d84ca8621fd89b99fcf60a2fdfd46 (diff) |
fsck: show progress while fscking at boot
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 7af060aa40..bfc48e5e39 100644 --- a/src/main.c +++ b/src/main.c @@ -1364,7 +1364,6 @@ int main(int argc, char *argv[]) { } m->confirm_spawn = arg_confirm_spawn; - m->show_status = arg_show_status; #ifdef HAVE_SYSV_COMPAT m->sysv_console = arg_sysv_console; #endif @@ -1379,6 +1378,8 @@ int main(int argc, char *argv[]) { if (arg_default_controllers) manager_set_default_controllers(m, arg_default_controllers); + manager_set_show_status(m, arg_show_status); + before_startup = now(CLOCK_MONOTONIC); if ((r = manager_startup(m, serialization, fds)) < 0) |