From e743900632fd6614b67870990434b19d475663cf Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Fri, 22 Jul 2016 13:57:11 +0200 Subject: [PATCH] Implemented #4045 Add support for OpenVZ simfs in website quota code --- server/plugins-available/apache2_plugin.inc.php | 2 +- server/plugins-available/nginx_plugin.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/plugins-available/apache2_plugin.inc.php b/server/plugins-available/apache2_plugin.inc.php index 56791d3d2f..1f3f0bea4e 100644 --- a/server/plugins-available/apache2_plugin.inc.php +++ b/server/plugins-available/apache2_plugin.inc.php @@ -888,7 +888,7 @@ class apache2_plugin { $file_system = $df_output[0]; $primitive_root = $df_output[1]; - if ( in_array($file_system , array('ext2','ext3','ext4'), true) ) { + if ( in_array($file_system , array('ext2','ext3','ext4','simfs','reiserfs'), true) ) { exec('setquota -u '. $username . ' ' . $blocks_soft . ' ' . $blocks_hard . ' 0 0 -a &> /dev/null'); exec('setquota -T -u '.$username.' 604800 604800 -a &> /dev/null'); } elseif ($file_system == 'xfs') { diff --git a/server/plugins-available/nginx_plugin.inc.php b/server/plugins-available/nginx_plugin.inc.php index c343f425d3..7f73d08be0 100644 --- a/server/plugins-available/nginx_plugin.inc.php +++ b/server/plugins-available/nginx_plugin.inc.php @@ -747,7 +747,7 @@ class nginx_plugin { $file_system = $df_output[0]; $primitive_root = $df_output[1]; - if ( in_array($file_system , array('ext2','ext3','ext4'), true) ) { + if ( in_array($file_system , array('ext2','ext3','ext4','simfs','reiserfs'), true) ) { exec('setquota -u '. $username . ' ' . $blocks_soft . ' ' . $blocks_hard . ' 0 0 -a &> /dev/null'); exec('setquota -T -u '.$username.' 604800 604800 -a &> /dev/null'); } elseif ($file_system == 'xfs') { -- GitLab