mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
162d4ce478
* Corrected file path by removing /mnt * Update 20-zerotier.sh * Update README.md * removed /mnt directory as evertyhing is done in /data * Corrected URL * Update remote_install.sh * Auto check data dir * fixed adguard installation * More data fixes * Fix dns common data path * fixed haproxy readme
49 lines
1.2 KiB
Bash
Executable File
49 lines
1.2 KiB
Bash
Executable File
# Change to boostchicken/pihole:latest for DoH
|
|
# Change to boostchicken/pihole-dote:latest for DoTE
|
|
IMAGE=pihole/pihole:latest
|
|
# Get DataDir location
|
|
DATA_DIR="/data"
|
|
case "$(ubnt-device-info firmware || true)" in
|
|
1*)
|
|
DATA_DIR="/mnt/data"
|
|
;;
|
|
2*)
|
|
DATA_DIR="/data"
|
|
;;
|
|
3*)
|
|
DATA_DIR="/data"
|
|
;;
|
|
*)
|
|
echo "ERROR: No persistent storage found." 1>&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# Check if the directory exists
|
|
if [ ! -d "${DATA_DIR}/pihole" ]; then
|
|
# If it does not exist, create the directory
|
|
mkdir -p "${DATA_DIR}/pihole"
|
|
mkdir -p "${DATA_DIR}/pihole/etc"
|
|
echo "Directory '${DATA_DIR}/pihole' created."
|
|
else
|
|
# If it already exists, print a message
|
|
echo "Directory '${DATA_DIR}/pihole' already exists. Moving on."
|
|
fi
|
|
podman pull $IMAGE
|
|
podman stop pihole
|
|
podman rm pihole
|
|
podman run -d --network dns --restart always \
|
|
--name pihole \
|
|
-e TZ="America/Chicago" \
|
|
-v "${DATA_DIR}/pihole/etc:/etc/pihole/" \
|
|
-v "${DATA_DIR}/pihole/etc-dnsmasq.d/:/etc/dnsmasq.d/" \
|
|
--dns=127.0.0.1 \
|
|
--dns=1.1.1.1 \
|
|
--dns=1.0.0.1 \
|
|
--hostname pi.hole \
|
|
-e VIRTUAL_HOST="pi.hole" \
|
|
-e PROXY_LOCATION="pi.hole" \
|
|
-e ServerIP="10.0.5.3" \
|
|
-e IPv6="False" \
|
|
$IMAGE
|