Created
April 18, 2020 16:55
-
-
Save bdashrad/3b926f4af7695727cbcfde831a78e85e to your computer and use it in GitHub Desktop.
pihole sync example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Perform maintenance on secondary Pi if online | |
pi=$(timeout 0.2 ping -c1 10.0.0.3 &> /dev/null && echo "0" || echo "1") | |
if [ "$jd" -eq 0 ]; then | |
cd /etc/pihole/ | |
ssh -i /root/.ssh/id.pi "[email protected]" "[ ! -f '~/pihole' ] && mkdir ~/pihole" | |
scp -i /root/.ssh/id.pi adlists.list *list.txt setupVars.conf *.domains [email protected]:~/pihole | |
scp -i /root/.ssh/id.pi /etc/dnsmasq.d/03-pihole-wildcard.conf [email protected]:~/pihole/03-pihole-wildcard.conf | |
ssh -i /root/.ssh/id.pi "[email protected]" "sudo mv ~/pihole/03-pihole-wildcard.conf /etc/dnsmasq.d; sudo mv ~/pihole/* /etc/pihole" | |
ssh -i /root/.ssh/id.pi "[email protected]" "pihole -g" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment