Skip to content
Snippets Groups Projects
Commit efe163de authored by enavn's avatar enavn
Browse files

Fix xfs_quota

parent 568430f2
No related branches found
No related tags found
No related merge requests found
...@@ -145,10 +145,10 @@ class cron_plugin { ...@@ -145,10 +145,10 @@ class cron_plugin {
exec('setquota -T -u '.$username.' 604800 604800 -a &> /dev/null'); exec('setquota -T -u '.$username.' 604800 604800 -a &> /dev/null');
} elseif ($file_system == 'xfs') { } elseif ($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. // 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($project_uid, $username_position, $xfs_projects);
unset($primitive_root, $df_output, $mb_hard, $mb_soft); unset($primitive_root, $df_output, $mb_hard, $mb_soft);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment