diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-08-19 15:03:33 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-08-19 15:03:33 +0200 |
commit | 40b87b13941f3f0e0068070166bb2cf628189179 (patch) | |
tree | a2724087ae270f7f5776e34dd0a20b265915ceed /lib | |
parent | 5fd36d017ecdbce61dcf1c67ae04c8c0be81a4bf (diff) | |
download | nextcloud-server-40b87b13941f3f0e0068070166bb2cf628189179.tar.gz nextcloud-server-40b87b13941f3f0e0068070166bb2cf628189179.zip |
Add warning for not existing CA bundle when updating
For newer releases we shall use an integrity check. But that's a good alternative for now.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/updater.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/updater.php b/lib/private/updater.php index cba87434165..f73fa8ff655 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -271,6 +271,13 @@ class Updater extends BasicEmitter { throw new \Exception($e->getMessage()); } + // FIXME: Some users do not upload the new ca-bundle.crt, let's catch this + // in the update. For a newer release we shall use an integrity check after + // the update. + if(!file_exists(\OC::$configDir .'/ca-bundle.crt')) { + throw new \Exception('Please upload the ca-bundle.crt file into the \'config\' directory.'); + } + // create empty file in data dir, so we can later find // out that this is indeed an ownCloud data directory // (in case it didn't exist before) |