Browse Source

fix: [host] ``dnsmasq``'s DNS waterfall didn't have proper ``logrotate`` script.

Signed-off-by: Valentin Lab <valentin.lab@kalysto.org>
dhcp
Valentin Lab 4 years ago
parent
commit
2adc8fdeaa
  1. 8
      precise/host/hooks/install.d/80-dns-waterfall.sh

8
precise/host/hooks/install.d/80-dns-waterfall.sh

@ -60,7 +60,7 @@ EOF
## Logrotate for dnsmasq and named
##
cat <<EOF > /etc/logrotate.d/dnsmasq
cat <<EOF > /etc/logrotate.d/dnsmasq
/var/log/dnsmasq.log {
missingok
@ -69,14 +69,14 @@ cat <<EOF > /etc/logrotate.d/dnsmasq
compress
postrotate
kill -s SIGUSR2 "\$(cat /var/run/dnsmasq/dnsmasq.pid)"
/bin/kill -s SIGUSR2 "\$(cat /var/run/dnsmasq/dnsmasq.pid)"
endscript
}
EOF
cat <<EOF > /etc/logrotate.d/lxc-dnsmasq
cat <<EOF > /etc/logrotate.d/lxc-dnsmasq
/var/log/lxc-dnsmasq.log {
missingok
@ -85,7 +85,7 @@ cat <<EOF > /etc/logrotate.d/lxc-dnsmasq
compress
postrotate
kill -s SIGUSR2 "\$(cat /var/run/lxc/dnsmasq.pid)"
/bin/kill -s SIGUSR2 "\$(cat /var/run/lxc/dnsmasq.pid)"
endscript
}

Loading…
Cancel
Save