mirror of
https://github.com/clearlinux/systemd-stable.git
synced 2026-09-07 06:03:51 +00:00
mount: pull in quota tools from fstab lines with 'quota' option, too
https://bugzilla.redhat.com/show_bug.cgi?id=736360
This commit is contained in:
@@ -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)
|
||||
|
||||
+4
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user