diff options
author | Duncan Bellamy <dunk@denkimushi.com> | 2020-04-08 16:30:07 +0000 |
---|---|---|
committer | TBK <tbk@jjtc.eu> | 2020-04-08 18:13:19 +0000 |
commit | d32b13a081d720c8650cdd82c59ab49af1d99a82 (patch) | |
tree | fa8185fe6ad7dd81df9b47149a4cf14765eb0293 | |
parent | 5e3dffc309dfb068131fbae7fa0c425cffb44567 (diff) | |
download | aports-d32b13a081d720c8650cdd82c59ab49af1d99a82.tar.bz2 aports-d32b13a081d720c8650cdd82c59ab49af1d99a82.tar.xz |
community/rspamd: remove dynamic folder creation from APKBUILD
* In default-configs.patch the name for "dynamic_conf" is changed to dynamic not the folder causing as error as the file cannot be saved with the same name
-rw-r--r-- | community/rspamd/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/community/rspamd/APKBUILD b/community/rspamd/APKBUILD index 20c6741818..035c04aa9b 100644 --- a/community/rspamd/APKBUILD +++ b/community/rspamd/APKBUILD @@ -6,7 +6,7 @@ # Contributor: Duncan Bellamy <dunk@denkimushi.com> pkgname=rspamd pkgver=2.5 -pkgrel=0 +pkgrel=1 pkgdesc="Fast, free and open-source spam filtering system" url="https://rspamd.com/" arch="all" @@ -102,8 +102,7 @@ package() { etc/$pkgname/override.d install -dm 750 -o rspamd -g rspamd \ - var/lib/$pkgname \ - var/lib/$pkgname/dynamic + var/lib/$pkgname install -dm 750 -o rspamd -g rspamd \ var/log/$pkgname } |