kemonine
/
lollipopcloud
Archived
1
0
Fork 0

Remove unbound setup from pi-hole as it has been moved to the unbound docs

This commit is contained in:
KemoNine 2018-08-08 11:36:06 -04:00
parent 7fd4bfbcb9
commit d76df575cc
No known key found for this signature in database
GPG Key ID: 9D79FBF661EC6779
1 changed files with 0 additions and 20 deletions

View File

@ -23,26 +23,6 @@ Add a 2nd ```interface``` line to ```/etc/unbound/unbound.conf```
Restart unbound with ```systemctl restart unbound```
## Setup Unbound to start *after* Docker
*See [here (link)](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/system_administrators_guide/sect-Managing_Services_with_systemd-Unit_Files#brid-Managing_Services_with_systemd-Extending_Unit_Config) for more details.*
This is mainly here to ensure that unbound starts *after* the Docker network comes up as it's configured to listen on the Docker network. It'll fail to load/restart if the bind address isn't present when it is started.
``` bash
mkdir -p /etc/systemd/system/unbound.service.d
cat > /etc/systemd/system/unbound.service.d/10-after-docker.conf <<EOF
[Unit]
Requires=docker.service
After=docker.service
Restart=always
RestartSec=10
EOF
systemctl daemon-reload
```
## Setup Initial Run & Update Script
A simple update script that will pull the latest Pi Hole Docker image, configure it for auto-run, etc. Note the settings under the ```docker run``` command. You need/want to tweak them lightly.