2023-02-23 05:44:27 +00:00
|
|
|
#!/bin/bash
|
2023-02-22 16:49:54 +00:00
|
|
|
# Place cross compiled version of `socat` in /data/hdhomerun
|
2022-03-12 12:34:08 +00:00
|
|
|
HDHOMERUN_IP=10.10.30.146
|
|
|
|
|
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"
|
|
|
|
;;
|
2024-05-14 02:34:28 +00:00
|
|
|
2* | 3* | 4*)
|
2023-02-22 16:49:54 +00:00
|
|
|
DATA_DIR="/data"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "ERROR: No persistent storage found." 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
# Check if the directory exists
|
|
|
|
if [ ! -d "$DATA_DIR" ]; then
|
|
|
|
# If it does not exist, create the directory
|
|
|
|
mkdir -p "$DATA_DIR"
|
|
|
|
echo "Directory '$DATA_DIR' created."
|
|
|
|
else
|
|
|
|
# If it already exists, print a message
|
|
|
|
echo "Directory '$DATA_DIR' already exists. Moving on."
|
|
|
|
fi
|
|
|
|
|
|
|
|
${DATA_DIR}/hdhomerun/socat -d -d -v udp4-recvfrom:65001,broadcast,fork udp4-sendto:$HDHOMERUN_IP:65001 &
|