Merge pull request #37070 from nextcloud/enh/noid/add-free-disk-space-check

add a check for disk_free_space in Config.php
pull/20757/merge
Simon L 1 year ago committed by GitHub
commit 694f743829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -286,10 +286,12 @@ class Config {
}
// Never write file back if disk space should be too low
$df = disk_free_space($this->configDir);
$size = strlen($content) + 10240;
if ($df !== false && $df < (float)$size) {
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
if (function_exists('disk_free_space')) {
$df = disk_free_space($this->configDir);
$size = strlen($content) + 10240;
if ($df !== false && $df < (float)$size) {
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
}
}
// Try to acquire a file lock

Loading…
Cancel
Save