diff --git a/lib/common/functions.sh b/lib/common/functions.sh index 43442f6601..38c88c684e 100755 --- a/lib/common/functions.sh +++ b/lib/common/functions.sh @@ -1362,7 +1362,7 @@ configureNFS() { mv -fv "${nfsconfig}" "${nfsconfig}.${timestamp}" >>$error_log 2>&1 userId=$(id -u $username) groupId=$(id -g $username) - echo -e "$storageLocation *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,all_squash,anonuid=${userId},anongid=${groupId},fsid=0)\n$storageLocation/dev *(rw,async,no_wdelay,no_subtree_check,all_squash,anonuid=${userId},anongid=${groupId},fsid=1)" > "$nfsconfig" + echo -e "$storageLocation *(ro,sync,no_wdelay,subtree_check,insecure_locks,all_squash,anonuid=${userId},anongid=${groupId},fsid=0)\n$storageLocation/dev *(rw,async,no_wdelay,subtree_check,all_squash,anonuid=${userId},anongid=${groupId},fsid=1)" > "$nfsconfig" diffconfig "${nfsconfig}" errorStat $? dots "Setting up and starting RPCBind" diff --git a/lib/redhat/config.sh b/lib/redhat/config.sh index 7c193d424e..b69271c0cc 100755 --- a/lib/redhat/config.sh +++ b/lib/redhat/config.sh @@ -26,7 +26,7 @@ case $linuxReleaseName_lower in [[ -z $packmanUpdate ]] && packmanUpdate="urpmi.update -a" [[ -z $dhcpname ]] && dhcpname="dhcp-server" [[ -z $tftpdirdst ]] && tftpdirdst="/var/lib/tftpboot" - [[ -z $nfsexportsopts ]] && nfsexportsopts="no_subtree_check" + [[ -z $nfsexportsopts ]] && nfsexportsopts="subtree_check" [[ -z $etcconf ]] && etcconf="/etc/httpd/conf/conf.d/fog.conf" ;; *) diff --git a/packages/web/lib/fog/system.class.php b/packages/web/lib/fog/system.class.php index 12c3e3b859..f4e0630c12 100644 --- a/packages/web/lib/fog/system.class.php +++ b/packages/web/lib/fog/system.class.php @@ -53,7 +53,7 @@ private static function _versionCompare() public function __construct() { self::_versionCompare(); - define('FOG_VERSION', '1.5.10.29'); + define('FOG_VERSION', '1.5.10.30'); define('FOG_SCHEMA', 270); define('FOG_BCACHE_VER', 140); define('FOG_CLIENT_VERSION', '0.13.0');