From 893450d382eb08808583fe4edaa15de730106b03 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Weism=C3=BCller?= Date: Fri, 2 May 2014 08:33:45 +0200 Subject: [PATCH] owncloud: with non-existent certificates they were not copied. corrected install.sh to the effect --- src/paks/owncloud/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paks/owncloud/install.sh b/src/paks/owncloud/install.sh index 10aef4541a..e2ad07d407 100644 --- a/src/paks/owncloud/install.sh +++ b/src/paks/owncloud/install.sh @@ -34,7 +34,7 @@ mkdir -p /var/owncloud/data chown -R nobody:nobody /var/owncloud # Import web interface certificates if none exist. -if [ ! -e "/etc/httpd/owncloud.crt" ] && [ ! "/etc/httpd/owncloud.key" ]; then +if [ ! -e "/etc/httpd/owncloud.crt" ] && [ ! -e "/etc/httpd/owncloud.key" ]; then cat /etc/httpd/server.crt > /etc/httpd/owncloud.crt cat /etc/httpd/server.key > /etc/httpd/owncloud.key fi -- 2.39.5