2023-02-23 05:44:27 +00:00
|
|
|
#!/bin/bash
|
2020-12-24 22:25:22 +00:00
|
|
|
CONTAINER=cloudflare-ddns
|
2023-02-22 20:01:18 +00:00
|
|
|
# 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"
|
|
|
|
;;
|
2023-02-22 20:01:18 +00:00
|
|
|
*)
|
2024-05-14 02:34:28 +00:00
|
|
|
echo "ERROR: No persistent storage found." 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
2023-02-22 20:01:18 +00:00
|
|
|
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.
|
2023-02-22 16:49:54 +00:00
|
|
|
# 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 \
|
2023-02-22 20:01:18 +00:00
|
|
|
-v $DATA_DIR/cloudflare-ddns/config.json:/config.json \
|
2020-12-24 22:25:22 +00:00
|
|
|
timothyjmiller/cloudflare-ddns:latest
|
|
|
|
fi
|