1
0
mirror of https://github.com/pi-hole/docker-pi-hole.git synced 2024-06-25 00:37:47 +02:00

install the logrotate file into /etc/pihole at startup in case of volume mounting

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner 2023-11-06 21:43:42 +00:00
parent b9298ba0ce
commit 7f89be5b1d
No known key found for this signature in database

View File

@ -40,6 +40,7 @@ ensure_basic_configuration() {
touch /var/log/pihole/FTL.log /var/log/pihole/pihole.log
chown -R pihole:pihole /var/run/pihole /var/log/pihole
if [[ -z "${PYTEST}" ]]; then
if [[ ! -f /etc/pihole/adlists.list ]]; then
echo "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" >/etc/pihole/adlists.list
@ -54,6 +55,11 @@ ensure_basic_configuration() {
setFTLConfigValue "files.macvendor" "/macvendor.db"
chown pihole:pihole /macvendor.db
fi
# Install the logrotate config file - this is done already in Dockerfile
# but if a user has mounted a volume over /etc/pihole, it will have been lost
# pihole-FTL-prestart.sh will set the ownership of the file to root:root
install -Dm644 -t /etc/pihole /etc/.pihole/advanced/Templates/logrotate
}
setup_web_password() {