mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
11 lines
191 B
Bash
11 lines
191 B
Bash
#!/bin/sh
|
|
|
|
# make sure we don't lose our config
|
|
mkdir -p /etc/clamav
|
|
if [ -f /etc/clamav.conf ]; then
|
|
mv /etc/clamav.conf /etc/clamav/
|
|
ln -s clamav/clamav.conf /etc/clamav.conf
|
|
fi
|
|
|
|
exit 0
|
|
|