diff options
Diffstat (limited to 'debian/postinst')
-rw-r--r-- | debian/postinst | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/debian/postinst b/debian/postinst index bfd3a53c4..7c30263bd 100644 --- a/debian/postinst +++ b/debian/postinst @@ -6,7 +6,6 @@ set -e case "$1" in configure) SERVER_HOME=/var/lib/rspamd - SERVER_RUN=/var/run/rspamd SERVER_LOG=/var/log/rspamd SERVER_USER=rspamd SERVER_NAME="Rspamd spam filtering system" @@ -20,15 +19,11 @@ case "$1" in --gecos "$SERVER_NAME" \ $SERVER_USER - # 2. create homedir if not existing - test -d $SERVER_RUN || mkdir $SERVER_RUN - # 5. adjust file and directory permissions if ! dpkg-statoverride --list $SERVER_HOME >/dev/null then - chown -R $SERVER_USER:$SERVER_GROUP $SERVER_HOME $SERVER_LOG $SERVER_RUN + chown -R $SERVER_USER:$SERVER_GROUP $SERVER_HOME $SERVER_LOG chmod u=rwx,g=rx,o= $SERVER_HOME - chmod u=rwx,g=rx,o=rx $SERVER_RUN chmod u=rwx,g=rx,o=rx $SERVER_LOG fi ;; |