mirror of
https://github.com/nextcloud/server.git
synced 2026-02-17 18:00:44 -05:00
add a check for disk_free_space in Config.php
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
537a45ad2a
commit
2c6574a728
1 changed files with 6 additions and 4 deletions
|
|
@ -278,10 +278,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…
Reference in a new issue