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
28 lines
476 B
Bash
28 lines
476 B
Bash
IMAGE=haproxy: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
|
|
|
|
podman pull $IMAGE
|
|
podman stop haproxy
|
|
podman rm haproxy
|
|
podman run -d --net=host --restart always \
|
|
--name haproxy \
|
|
--hostname ha.proxy \
|
|
-v "${DATA_DIR}/haproxy/:/usr/local/etc/haproxy/" \
|
|
$IMAGE
|