chiark / gitweb /
mount: pull in quota tools from fstab lines with 'quota' option, too
authorLennart Poettering <lennart@poettering.net>
Wed, 21 Sep 2011 18:19:43 +0000 (20:19 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 21 Sep 2011 18:19:43 +0000 (20:19 +0200)
https://bugzilla.redhat.com/show_bug.cgi?id=736360

TODO
src/mount.c

diff --git a/TODO b/TODO
index c51205175a6634b07fcd58b13ffa1888ef0bc85e..880123d683353c39100f4e51062ee76acf2a66d0 100644 (file)
--- a/TODO
+++ b/TODO
@@ -17,6 +17,8 @@ Bugfixes:
 
 Features:
 
+* for socket units don't inherit global stdout setting.
+
 * internal restart counter for units (focus on auto-respawn)
 
 * finer-grained auto-respawn settings (rate-limit)
index 829c2cc13c1ff944666f00418909036742cd9854..2fc799a6ed58cfc0a636fd6a80c6dea9759365ba 100644 (file)
@@ -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) {