2023-02-23 05:44:27 +00:00
|
|
|
#!/bin/bash
|
2023-02-22 16:49:54 +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 16:49:54 +00:00
|
|
|
*)
|
2024-05-14 02:34:28 +00:00
|
|
|
echo "ERROR: No persistent storage found." 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
2023-02-22 16:49:54 +00:00
|
|
|
esac
|
2021-11-17 06:07:24 +00:00
|
|
|
|
2023-02-22 16:49:54 +00:00
|
|
|
# Check if the directory exists
|
|
|
|
if [ ! -d "${DATA_DIR}/on_boot.d" ]; then
|
|
|
|
# If it does not exist, create the directory
|
|
|
|
mkdir -p "${DATA_DIR}/on_boot.d"
|
|
|
|
echo "Directory '${DATA_DIR}/on_boot.d' created."
|
|
|
|
else
|
|
|
|
# If it already exists, print a message
|
|
|
|
echo "Directory '${DATA_DIR}/on_boot.d' already exists. Moving on."
|
|
|
|
fi
|
2021-11-17 06:07:24 +00:00
|
|
|
set -e
|
|
|
|
|
2023-02-22 16:49:54 +00:00
|
|
|
if [ -f ${DATA_DIR}/on_boot.d/10-dns.sh ]; then
|
|
|
|
if ! iptables-save | grep -e '\-A PREROUTING.* \--log-prefix "\[' >/dev/null; then
|
|
|
|
${DATA_DIR}/on_boot.d/10-dns.sh
|
2021-11-17 06:07:24 +00:00
|
|
|
else
|
|
|
|
echo "iptables already contains DNAT log prefixes, ignoring."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2023-02-22 16:49:54 +00:00
|
|
|
${DATA_DIR}/on_boot.d/30-ipt-enable-logs-launch.sh
|