unifios-utilities/cloudflare-ddns/on_boot.d/30-cloudflare-ddns.sh

39 lines
1.0 KiB
Bash
Raw Normal View History

2023-02-23 05:44:27 +00:00
#!/bin/bash
2020-12-24 22:25:22 +00:00
CONTAINER=cloudflare-ddns
# Get DataDir location
DATA_DIR="/data"
case "$(ubnt-device-info firmware || true)" in
1*)
2024-05-14 02:34:28 +00:00
DATA_DIR="/mnt/data"
;;
2* | 3* | 4*)
DATA_DIR="/data"
;;
*)
2024-05-14 02:34:28 +00:00
echo "ERROR: No persistent storage found." 1>&2
exit 1
;;
esac
# Check if the directory exists
if [ ! -d "$DATA_DIR/cloudflare-ddns" ]; then
# If it does not exist, create the directory
mkdir -p "$DATA_DIR/cloudflare-ddns"
echo "Directory '$DATA_DIR/cloudflare-ddns' created."
else
# If it already exists, print a message
echo "Directory '$DATA_DIR/cloudflare-ddns' already exists. Moving on."
fi
2020-12-24 22:25:22 +00:00
# Starts a cloudflare ddns container that is deleted after it is stopped.
# All configs stored in /data/cloudflare-ddns
2020-12-24 22:25:22 +00:00
if podman container exists "$CONTAINER"; then
podman start "$CONTAINER"
else
podman run -i -d --rm \
--net=host \
--name "$CONTAINER" \
--security-opt=no-new-privileges \
-v $DATA_DIR/cloudflare-ddns/config.json:/config.json \
2020-12-24 22:25:22 +00:00
timothyjmiller/cloudflare-ddns:latest
fi