[systemd-commits] src/mount.c TODO
Lennart Poettering
lennart at kemper.freedesktop.org
Wed Sep 21 11:20:39 PDT 2011
TODO | 2 ++
src/mount.c | 5 ++++-
2 files changed, 6 insertions(+), 1 deletion(-)
New commits:
commit d3354f66c23aa29b3a15a4c5903fb2edcc8acfda
Author: Lennart Poettering <lennart at poettering.net>
Date: Wed Sep 21 20:19:43 2011 +0200
mount: pull in quota tools from fstab lines with 'quota' option, too
https://bugzilla.redhat.com/show_bug.cgi?id=736360
diff --git a/TODO b/TODO
index c512051..880123d 100644
--- 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)
diff --git a/src/mount.c b/src/mount.c
index 829c2cc..2fc799a 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) {
More information about the systemd-commits
mailing list