2021-10-09 01:30:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
CONTAINER=haproxy
|
2023-02-22 16:49:54 +00:00
|
|
|
# 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}/haproxy" ]; then
|
|
|
|
# If it does not exist, create the directory
|
|
|
|
mkdir -p "${DATA_DIR}/haproxy"
|
|
|
|
echo "Directory '${DATA_DIR}/haproxy' created."
|
|
|
|
else
|
|
|
|
# If it already exists, print a message
|
|
|
|
echo "Directory '${DATA_DIR}/haproxy' already exists. Moving on."
|
|
|
|
fi
|
2021-10-09 01:30:21 +00:00
|
|
|
|
2022-02-06 09:14:18 +00:00
|
|
|
# Starts an haproxy container that is deleted after it is stopped.
|
2023-02-22 16:49:54 +00:00
|
|
|
# All configs stored in /data/haproxy
|
2021-10-09 01:30:21 +00:00
|
|
|
if podman container exists "$CONTAINER"; then
|
|
|
|
podman start "$CONTAINER"
|
|
|
|
else
|
2022-02-06 09:14:18 +00:00
|
|
|
podman run -d --net=host --restart always \
|
|
|
|
--name haproxy \
|
|
|
|
--hostname ha.proxy \
|
2023-02-22 16:49:54 +00:00
|
|
|
-v "${DATA_DIR}/haproxy/:/usr/local/etc/haproxy/" \
|
2022-02-06 09:14:18 +00:00
|
|
|
haproxy:latest
|
|
|
|
fi
|