2021-02-23 19:03:01 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
function fix
|
|
|
|
{
|
|
|
|
_notify 'tasklog' 'Post-configuration checks'
|
|
|
|
for FUNC in "${FUNCS_FIX[@]}"
|
|
|
|
do
|
|
|
|
${FUNC} || _defunc
|
|
|
|
done
|
|
|
|
|
|
|
|
_notify 'inf' 'Removing leftover PID files from a stop/start'
|
2021-06-19 12:01:38 +00:00
|
|
|
find /var/run/ -not -name 'supervisord.pid' -name '*.pid' -delete
|
2021-02-23 19:03:01 +00:00
|
|
|
touch /dev/shm/supervisor.sock
|
|
|
|
}
|
|
|
|
|
|
|
|
function _fix_var_mail_permissions
|
|
|
|
{
|
|
|
|
_notify 'task' 'Checking /var/mail permissions'
|
|
|
|
|
|
|
|
# fix permissions, but skip this if 3 levels deep the user id is already set
|
|
|
|
if find /var/mail -maxdepth 3 -a \( \! -user 5000 -o \! -group 5000 \) | read -r
|
|
|
|
then
|
|
|
|
_notify 'inf' 'Fixing /var/mail permissions'
|
|
|
|
chown -R 5000:5000 /var/mail
|
|
|
|
else
|
|
|
|
_notify 'inf' 'Permissions in /var/mail look OK'
|
|
|
|
fi
|
2021-02-24 09:12:20 +00:00
|
|
|
|
|
|
|
return 0
|
2021-02-23 19:03:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function _fix_var_amavis_permissions
|
|
|
|
{
|
|
|
|
local AMAVIS_STATE_DIR='/var/mail-state/lib-amavis'
|
|
|
|
[[ ${ONE_DIR} -eq 0 ]] && AMAVIS_STATE_DIR="/var/lib/amavis"
|
|
|
|
[[ ! -e ${AMAVIS_STATE_DIR} ]] && return 0
|
|
|
|
|
|
|
|
_notify 'inf' 'Checking and fixing Amavis permissions'
|
|
|
|
chown -hR amavis:amavis "${AMAVIS_STATE_DIR}"
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function _fix_cleanup_clamav
|
|
|
|
{
|
|
|
|
_notify 'task' 'Cleaning up disabled Clamav'
|
|
|
|
rm -f /etc/logrotate.d/clamav-*
|
|
|
|
rm -f /etc/cron.d/clamav-freshclam
|
|
|
|
}
|
|
|
|
|
|
|
|
function _fix_cleanup_spamassassin
|
|
|
|
{
|
2021-03-28 20:07:52 +00:00
|
|
|
_notify 'task' 'Cleaning up disabled SpamAssassin'
|
2021-02-23 19:03:01 +00:00
|
|
|
rm -f /etc/cron.daily/spamassassin
|
|
|
|
}
|