mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
address review by Joas
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
9b6e5c6674
commit
3757b345bc
1 changed files with 3 additions and 2 deletions
|
|
@ -285,9 +285,10 @@ class Config {
|
|||
'This can usually be fixed by giving the webserver write access to the config directory.');
|
||||
}
|
||||
|
||||
// Never write file back if disk space should be low (less than 100 KiB)
|
||||
// Never write file back if disk space should be too low
|
||||
$df = disk_free_space($this->configDir);
|
||||
if ($df !== false && (int)$df < 102400) {
|
||||
$size = strlen($content) + 10240;
|
||||
if ($df !== false && (int)$df < $size) {
|
||||
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue