aboutsummaryrefslogtreecommitdiffstats
path: root/community/rspamd/rspamd.initd
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/rspamd.initd
parent9e08073ab06d8ccd7e1a0fbea2223d2119ae3c55 (diff)
downloadaports-028ab3b5a2458298ace85843b05384bfdddca3b1.tar.bz2
aports-028ab3b5a2458298ace85843b05384bfdddca3b1.tar.xz
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/rspamd.initd')
-rw-r--r--community/rspamd/rspamd.initd2
1 files changed, 1 insertions, 1 deletions
diff --git a/community/rspamd/rspamd.initd b/community/rspamd/rspamd.initd
index 7aaa25a516..21fd105e8d 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
}