aboutsummaryrefslogtreecommitdiffstats
path: root/community/rspamd
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-07-30 12:49:47 +0200
committerJakub Jirutka <jakub@jirutka.cz>2018-07-30 12:55:09 +0200
commit028ab3b5a2458298ace85843b05384bfdddca3b1 (patch)
tree7a935655105823dc2f86c2927109154f76ea9395 /community/rspamd
parent9e08073ab06d8ccd7e1a0fbea2223d2119ae3c55 (diff)
community/rspamd: change /run/rspamd perms to 755
This directory is used for pid file and sockets. User can specify desired permissions for each socket in rspamd config. Creating /run/rspamd with perms 750 is just an obstacle when user needs to make some of the sockets accessible for anyone.
Diffstat (limited to 'community/rspamd')
-rw-r--r--community/rspamd/APKBUILD4
-rw-r--r--community/rspamd/rspamd.initd2
2 files changed, 3 insertions, 3 deletions
diff --git a/community/rspamd/APKBUILD b/community/rspamd/APKBUILD
index 0911ff1fe52..e9832ddf937 100644
--- a/community/rspamd/APKBUILD
+++ b/community/rspamd/APKBUILD
@@ -5,7 +5,7 @@
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
pkgname=rspamd
pkgver=1.7.8
-pkgrel=1
+pkgrel=2
pkgdesc="Fast, free and open-source spam filtering system"
url="https://rspamd.com"
arch="x86_64 x86 armhf ppc64le"
@@ -153,7 +153,7 @@ _mv() {
sha512sums="43f2350dfa4e0369cd53480bd4c8d0aa3898d7c471540281e7460a264207032aea226c4fd519a26397b9e9e8c8de3951e5a9752e010eabf1b3733a0c3e3086c2 rspamd-1.7.8.tar.gz
2efe28575c40d1fba84b189bb872860e744400db80dce2f6330be6c6287fb3f46e6511284729b957488bf40bcb9b0952e26df9934f5f138334bd2766075c45cb rspamd.logrotated
-89dbe56ed5350f5b3dc683ad6c66fcbb41817594d74a69a1a656408c0690130cf5694d8b6eabdef6bd2f242b966f4c29d24e5c5a1d3f3948ae2eeb95c494e850 rspamd.initd
+7add88e4bf3508d2a148241cd8db97851a33a7128be75f2a072a029b32b565e9de0299ad614fbda7f70ed54d1b6e2faa305eff3e443e90451abf59dedc1af576 rspamd.initd
a2003ef0c9d64a44480f59302864a2dfedcbe3a0047fcbb655408bc8aae9014b6ad0ddc6b64d4abeeb21bea0f86678afd30589ac8eed83e07ad7f87710e93702 rspamd.confd
fa0e14d507cd7421a20916506c03e6e6c95fb2f38736e69540ee3e066da883c2ee4cb779ee8787756e4a1831ff8f04150ce592d4d6df08d8a18d55f3c6de4646 cmakelists.patch
a8aefee649bf6630339d1d3f2bb20c25ca70b21a8eaa92951e926d0fd4525f1d4ac4cc7ea66ac2b15323cf02c93c759ddf7181502f0d71b21384ced9d88c008e conf-split-workers.patch
diff --git a/community/rspamd/rspamd.initd b/community/rspamd/rspamd.initd
index 7aaa25a516e..21fd105e8d5 100644
--- a/community/rspamd/rspamd.initd
+++ b/community/rspamd/rspamd.initd
@@ -27,7 +27,7 @@ depend() {
}
start_pre() {
- checkpath -d -m 750 -o "$command_user" ${pidfile%/*}
+ checkpath -d -m 755 -o "$command_user" ${pidfile%/*}
checkconfig >/dev/null 2>>"$startuplog" || checkconfig
}