blob: f387132623bd48b74eb49f4b56b4740b53e0dc7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo 'NOTE: Create database structure by running:'
echo ' sudo -u clamav /usr/bin/fangfrisch --conf /etc/fangfrisch/fangfrisch.conf initdb'
echo
echo 'NOTE: Enable fangfrisch.timer for regular automatic updates.'
}
post_upgrade() {
if (( $(vercmp $2 1.1.0) < 0 )); then
sudo -u clamav /usr/bin/fangfrisch --conf /etc/fangfrisch/fangfrisch.conf --force initdb
fi
}
|