diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-06-22 10:11:06 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-06-22 10:11:06 +0200 |
commit | 66a78c2b95ba6cc0be15dab68c5af816fb5b7a33 (patch) | |
tree | 603e004a1b4968020034031d6011743aa8f6609a /src/quotacheck | |
parent | 601913d616b46692ffe5992dc9a372a0c8b75cd2 (diff) |
cryptsetup: allow configuration of LUKS disks via the kernel cmdline
This generalizes a bit of the functionality already available in dracut.
Diffstat (limited to 'src/quotacheck')
-rw-r--r-- | src/quotacheck/quotacheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quotacheck/quotacheck.c b/src/quotacheck/quotacheck.c index e4420eeb1b..05e4971487 100644 --- a/src/quotacheck/quotacheck.c +++ b/src/quotacheck/quotacheck.c @@ -52,8 +52,8 @@ static int parse_proc_cmdline(void) { arg_force = true; else if (strneq(w, "quotacheck.mode=skip", l)) arg_skip = true; - else if (startswith(w, "quotacheck.mode")) - log_warning("Invalid quotacheck.mode= parameter. Ignoring."); + else if (startswith(w, "quotacheck")) + log_warning("Invalid quotacheck parameter. Ignoring."); #if defined(TARGET_FEDORA) || defined(TARGET_MANDRIVA) || defined(TARGET_MAGEIA) else if (strneq(w, "forcequotacheck", l)) arg_force = true; |