From 18e02970b85f4b99fabbd753878097f1eac8ebf6 Mon Sep 17 00:00:00 2001
From: enavn <hostmaster@dotserv.com>
Date: Fri, 30 Sep 2016 14:36:58 +0200
Subject: [PATCH] Fix xfs_quota

---
 server/plugins-available/nginx_plugin.inc.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/plugins-available/nginx_plugin.inc.php b/server/plugins-available/nginx_plugin.inc.php
index f7bf24ae27..27d710d395 100644
--- a/server/plugins-available/nginx_plugin.inc.php
+++ b/server/plugins-available/nginx_plugin.inc.php
@@ -748,10 +748,10 @@ class nginx_plugin {
           $primitive_root = $df_output[1];
 
           if($file_system == 'xfs') {
-			exec("xfs_quota -x -c 'limit -g bsoft=$mb_soft" . 'm'. " bhard=$mb_hard" . 'm'. " $username' $primitive_root");
+			exec("xfs_quota -x -c 'limit -u bsoft=$mb_soft" . 'm'. " bhard=$mb_hard" . 'm'. " $username' $primitive_root");
 
             // xfs only supports timers globally, not per user.
-            exec("xfs_quota -x -c 'timer -bir -i 604800'");
+            exec("xfs_quota -x -c 'timer -bir -i 604800' $primitive_root");
 
             unset($project_uid, $username_position, $xfs_projects);
             unset($primitive_root, $df_output, $mb_hard, $mb_soft);
-- 
GitLab