diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2014-05-15 19:07:43 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-05-16 18:33:59 +0200 |
commit | f1f0198cb61a3398557cc9ec596e1e90ac731ed3 (patch) | |
tree | a4d59f5550aff83187b88561c6d2064f428e7498 /src/fsck | |
parent | e16cb2e4efaba83f47da8355adc65fd83bbe8327 (diff) |
fsck: Allow to specify the fsck repair option in the cmdline
Some unattended systems do not have a console attached and entering
the default rescue mode will not be too helpful. Allow to specify
the "-y" option to attempt to fix all filesystem errors.
Manually verified by downloading an image.gz of e2fsprogs, using
losetup and running systemd-fsck on the loop device and varying
the fsck.repair=preen|yes|no option.
Diffstat (limited to 'src/fsck')
-rw-r--r-- | src/fsck/fsck.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/fsck/fsck.c b/src/fsck/fsck.c index 5ed837dffb..594f21e070 100644 --- a/src/fsck/fsck.c +++ b/src/fsck/fsck.c @@ -4,6 +4,7 @@ This file is part of systemd. Copyright 2010 Lennart Poettering + Copyright 2014 Holger Hans Peter Freyther systemd is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -42,6 +43,7 @@ static bool arg_skip = false; static bool arg_force = false; static bool arg_show_progress = false; +static const char *arg_repair = "-a"; static void start_target(const char *target) { _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL; @@ -85,6 +87,16 @@ static int parse_proc_cmdline_item(const char *key, const char *value) { arg_skip = true; else log_warning("Invalid fsck.mode= parameter. Ignoring."); + } else if (streq(key, "fsck.repair") && value) { + + if (streq(value, "preen")) + arg_repair = "-a"; + else if (streq(value, "yes")) + arg_repair = "-y"; + else if (streq(value, "no")) + arg_repair = "-n"; + else + log_warning("Invalid fsck.repair= parameter. Ignoring."); } else if (startswith(key, "fsck.")) log_warning("Invalid fsck parameter. Ignoring."); #ifdef HAVE_SYSV_COMPAT @@ -303,7 +315,7 @@ int main(int argc, char *argv[]) { } cmdline[i++] = "/sbin/fsck"; - cmdline[i++] = "-a"; + cmdline[i++] = arg_repair; cmdline[i++] = "-T"; cmdline[i++] = "-l"; |