From 531ec960e4c10bafac457682cf1bd206cef27087 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Mon, 15 Feb 2016 09:36:04 +0530 Subject: [PATCH] owncloud: Add packages for external storage The two packages are required when External Storage plugin in ownCloud is enabled. Since this has been a frequently asked question, add it to the dependencies list. --- plinth/modules/owncloud/owncloud.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plinth/modules/owncloud/owncloud.py b/plinth/modules/owncloud/owncloud.py index 249054dbb..f510965d6 100644 --- a/plinth/modules/owncloud/owncloud.py +++ b/plinth/modules/owncloud/owncloud.py @@ -58,8 +58,8 @@ def on_install(): service.notify_enabled(None, True) -@package.required(['postgresql', 'php5-pgsql', 'owncloud'], - on_install=on_install) +@package.required(['postgresql', 'php5-pgsql', 'owncloud', 'php-dropbox', + 'php-google-api-php-client'], on_install=on_install) def index(request): """Serve the ownCloud configuration page""" status = get_status()