2023-02-23 05:44:27 +00:00
|
|
|
#!/bin/bash
|
2021-11-17 06:07:24 +00:00
|
|
|
|
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
|
|
|
|
# Check if the directory exists
|
|
|
|
if [ ! -d "${DATA_DIR}/scripts" ]; then
|
|
|
|
# If it does not exist, create the directory
|
|
|
|
mkdir -p "${DATA_DIR}/scripts"
|
|
|
|
echo "Directory '${DATA_DIR}/scripts' created."
|
|
|
|
else
|
|
|
|
# If it already exists, print a message
|
|
|
|
echo "Directory '${DATA_DIR}/scripts' already exists. Moving on."
|
|
|
|
fi
|
|
|
|
|
2021-11-17 06:07:24 +00:00
|
|
|
set -e
|
|
|
|
|
2023-02-22 16:49:54 +00:00
|
|
|
if ! iptables-save | grep -e '\-A UBIOS_.* \--log-prefix "\[' >/dev/null; then
|
|
|
|
${DATA_DIR}/scripts/ipt-enable-logs.sh | iptables-restore -c
|
2021-11-17 06:07:24 +00:00
|
|
|
else
|
|
|
|
echo "iptables already contains USER log prefixes, ignoring."
|
|
|
|
fi
|