From d3354f66c23aa29b3a15a4c5903fb2edcc8acfda Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 21 Sep 2011 20:19:43 +0200 Subject: mount: pull in quota tools from fstab lines with 'quota' option, too https://bugzilla.redhat.com/show_bug.cgi?id=736360 --- src/mount.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/mount.c') diff --git a/src/mount.c b/src/mount.c index 829c2cc13..2fc799a6e 100644 --- a/src/mount.c +++ b/src/mount.c @@ -320,7 +320,10 @@ static bool needs_quota(MountParameters *p) { return false; return mount_test_option(p->options, "usrquota") || - mount_test_option(p->options, "grpquota"); + mount_test_option(p->options, "grpquota") || + mount_test_option(p->options, "quota") || + mount_test_option(p->options, "usrjquota") || + mount_test_option(p->options, "grpjquota"); } static int mount_add_fstab_links(Mount *m) { -- cgit v1.2.3