DL6ER
December 26, 2021, 8:57am
11
The warnings have always existed in /var/log/pihole.log . A change to Pi-hole made them more visible by also printing them into /var/log/pihole-FTL.log and showing them on the dashboard.
pi-hole:development
← pi-hole:tweak/warning_messages
opened 09:50AM - 13 Nov 21 UTC
**By submitting this pull request, I confirm the following:**
- [X] I have re… ad and understood the [contributors guide](https://github.com/pi-hole/pi-hole/blob/master/CONTRIBUTING.md).
- [X] I have checked that [another pull request](https://github.com/pi-hole/FTL/pulls) for this purpose does not exist.
- [X] I have considered, and confirmed that this submission will be valuable to others.
- [X] I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
- [X] I give this submission freely, and claim no ownership to its content.
**How familiar are you with the codebase?:**
## 10
---
Add DNSMASQ_WARN message type whenever dnsmasq logs a warning. Also do not flush the message table on reload (but only on restart) so that config-related (i.e. one-time) warnings are not accidentally deleted.
Brief documentation for these warning can be found here:
https://docs.pi-hole.net/ftldns/dnsmasq_warn/
Your issue may be related to:
opened 09:58PM - 22 Dec 21 UTC
bug
externalbug
<!-- pick ONE: Bug,
Feature Request,
Run Issue… (running Pi-hole container failing),
Build Issue (Building image failing)
Enter in line below: -->
This is a: Bug
## Details
When updating to "Pi-hole FTL v5.12, Web v5.9 and Core v5.7" I received this message after running:
<img width="976" alt="pi-hole disk shortage bug" src="https://user-images.githubusercontent.com/32434088/147159492-a76fd035-9614-4312-acf4-506f5a6de2ce.png">
## Related Issues
- [x] I have searched this repository/Pi-hole forums for existing issues and pull requests that look similar
## How to reproduce the issue
1. Environment data
* Operating System: macOS 12.1
* Hardware: MacBook Pro (2016)
* Kernel Architecture: Darwin 21.2.0
* Docker Install Info and version:
- Software source: Homebrew
- Supplimentary Software: /
* Hardware architecture: x86_64
2. docker-compose.yml contents, docker run shell command, or paste a screenshot of any UI based configuration of containers here
docker-compose.yml
```
version: "3"
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "80:80/tcp"
- "443:443/tcp"
environment:
TZ: 'Belgium/Brussels'
WEBPASSWORD: 'foo'
# Volumes store your data between container upgrades
volumes:
- './etc-pihole/:/etc/pihole/'
- './etc-dnsmasq.d/:/etc/dnsmasq.d/'
# Recommended but not required (DHCP needs NET_ADMIN)
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
cap_add:
- NET_ADMIN
restart: unless-stopped
```
3. any additional info to help reproduce
## These common fixes didn't work for my issue
- [x] I have tried removing/destroying my container, and re-creating a new container
- [ ] I have tried fresh volume data by backing up and moving/removing the old volume data
- [ ] I have tried running the stock `docker run` example(s) in the readme (removing any customizations I added)
- [ ] I have tried a newer or older version of Docker Pi-hole (depending what version the issue started in for me)
- [ ] I have tried running without my volume data mounts to eliminate volumes as the cause
If the above debugging / fixes revealed any new information note it here.
Add any other debugging steps you've taken or theories on root cause that may help.