install.fairie/home/dot_local/bin/post-installx/executable_post-clamav.sh

44 lines
1.7 KiB
Bash
Raw Normal View History

2024-05-05 04:05:33 +00:00
#!/usr/bin/env bash
# @file ClamAV Configuration
# @brief Applies ClamAV configuration, updates its database, and configures background services
2024-05-28 03:45:14 +00:00
set -Eeuo pipefail
trap "logg error 'Script encountered an error!'" ERR
2024-05-27 11:15:03 +00:00
2024-05-05 04:05:33 +00:00
if command -v freshclam > /dev/null; then
### Add freshclam.conf
if [ -f "$HOME/.local/etc/clamav/freshclam.conf" ]; then
sudo mkdir -p /usr/local/etc/clamav
sudo cp -f "$HOME/.local/etc/clamav/freshclam.conf" /usr/local/etc/clamav/freshclam.conf
2024-05-27 11:15:03 +00:00
if [ -d "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav" ] && [ ! -L "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav/freshclam.conf" ]; then
sudo rm -f "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav/freshclam.conf"
2024-05-05 04:05:33 +00:00
ln -s /usr/local/etc/clamav/freshclam.conf "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav/freshclam.conf"
fi
fi
2024-05-10 02:53:38 +00:00
2024-05-05 04:05:33 +00:00
### Add clamd.conf
if [ -f "$HOME/.local/etc/clamav/clamd.conf" ]; then
sudo mkdir -p /usr/local/etc/clamav
sudo cp -f "$HOME/.local/etc/clamav/clamd.conf" /usr/local/etc/clamav/clamd.conf
2024-05-27 11:15:03 +00:00
if [ -d "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav" ] && [ ! -L "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav/clamd.conf" ]; then
sudo rm -f "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav/clamd.conf"
2024-05-05 04:05:33 +00:00
ln -s /usr/local/etc/clamav/clamd.conf "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/clamav/clamd.conf"
fi
fi
### Setting up launchd services on macOS
if [ -d /Applications ] && [ -d /System ]; then
2024-05-28 03:45:14 +00:00
### clamav.clamdscan
load-service clamav.clamdscan
### clamav.freshclam
load-service clamav.freshclam
2024-05-05 04:05:33 +00:00
fi
### Update database
2024-05-20 07:48:38 +00:00
logg info 'Running freshclam to update database'
2024-05-05 04:05:33 +00:00
freshclam
else
logg info 'freshclam is not available in the PATH'
fi