From 9144c88c339320172a33a7b157e70677c1988a0d Mon Sep 17 00:00:00 2001 From: Stefan Wagner Date: Tue, 22 Nov 2016 15:55:20 +0100 Subject: testing/radicale: fix permissions for config files Radicale is started as user radicale, so the config should be readable by this user. Currently the config files aren't world readable, which makes the application crash on startup. --- testing/radicale/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testing/radicale') diff --git a/testing/radicale/APKBUILD b/testing/radicale/APKBUILD index 214f5bb3f3..5fbdf7a015 100644 --- a/testing/radicale/APKBUILD +++ b/testing/radicale/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa pkgname=radicale pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="A simple CalDAV (calendar) and CardDAV (contact) server" url="http://radicale.org" arch="noarch" @@ -40,8 +40,8 @@ package() { --root="$pkgdir" || return 1 install -d "$pkgdir"/etc/radicale - install -m640 config "$pkgdir"/etc/radicale/ || return 1 - install -m640 logging "$pkgdir"/etc/radicale/ || return 1 + install -m640 -g radicale config "$pkgdir"/etc/radicale/ || return 1 + install -m640 -g radicale logging "$pkgdir"/etc/radicale/ || return 1 install -d -o radicale "$pkgdir"/var/lib/radicale \ "$pkgdir"/var/log/radicale || return 1 -- cgit v1.2.3