diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-26 17:55:21 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-26 17:55:48 +0200 |
commit | f3fd1ae27b69781108de74dea9311ca7bbe46584 (patch) | |
tree | 48b2ad60216802d72a77a0871f7609939f00aa92 /community/nextcloud | |
parent | ea7923e8c26a890ff845edffe419b5f7f978c52c (diff) | |
download | aports-f3fd1ae27b69781108de74dea9311ca7bbe46584.tar.bz2 aports-f3fd1ae27b69781108de74dea9311ca7bbe46584.tar.xz |
community/nextcloud: fix installation of cron script
Diffstat (limited to 'community/nextcloud')
-rw-r--r-- | community/nextcloud/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/nextcloud/APKBUILD b/community/nextcloud/APKBUILD index 76bca29085..ee1f3a9c4d 100644 --- a/community/nextcloud/APKBUILD +++ b/community/nextcloud/APKBUILD @@ -2,7 +2,7 @@ # Contributor: Jakub Jirutka <jakub@jirutka.cz> pkgname=nextcloud pkgver=12.0.0 -pkgrel=3 +pkgrel=4 pkgdesc="A safe home for all your data" url="http://nextcloud.com" arch="noarch" @@ -128,7 +128,7 @@ initscript() { install -m 644 -D "$srcdir"/fpm-pool.conf "$confdir"/$pkgname.conf install -m 644 -D "$srcdir"/$pkgname.confd "$subpkgdir"/etc/conf.d/$pkgname - install -m 755 -D "$srcdir"/$pkgname.cron ./etc/periodic/15min/$pkgname + install -m 755 -D "$srcdir"/$pkgname.cron "$subpkgdir"/etc/periodic/15min/$pkgname mkdir -p "$subpkgdir"/etc/init.d ln -s $fpm_name "$subpkgdir"/etc/init.d/$pkgname |