diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-03-25 16:37:46 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-06-04 16:08:59 +0200 |
commit | da889ff029446119cf6159e75c48ef83be7de7e8 (patch) | |
tree | b88399936d4e4ec24145739db4cc9c1e3e09c833 /config | |
parent | b5f0a179187bb3f10a939518c6eba72593c1f7a5 (diff) | |
download | nextcloud-server-da889ff029446119cf6159e75c48ef83be7de7e8.tar.gz nextcloud-server-da889ff029446119cf6159e75c48ef83be7de7e8.zip |
Added experimental switch to count external storage data in quota
This includes all mountpoints except the Shared one in
the used space calculation.
Added unit tests for ext storage inclusion in quota calculation
Diffstat (limited to 'config')
-rwxr-xr-x | config/config.sample.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 0a81543589b..4b1ab2fce5f 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -291,6 +291,9 @@ $CONFIG = array( */ 'cache_path' => '', +/* EXPERIMENTAL: option whether to include external storage in quota calculation, defaults to false */ +'quota_include_external_storage' => false, + /* * specifies how often the filesystem is checked for changes made outside owncloud * 0 -> never check the filesystem for outside changes, provides a performance increase when it's certain that no changes are made directly to the filesystem @@ -301,5 +304,4 @@ $CONFIG = array( /* If true, prevent owncloud from changing the cache due to changes in the filesystem for all storage */ 'filesystem_cache_readonly' => false, - ); |