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*)
|
|
|
|
DATA_DIR="/mnt/data"
|
|
|
|
;;
|
|
|
|
2*)
|
|
|
|
DATA_DIR="/data"
|
|
|
|
;;
|
|
|
|
3*)
|
|
|
|
DATA_DIR="/data"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "ERROR: No persistent storage found." 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
mkdir -p ${DATA_DIR}/.home
|
2023-02-19 03:31:32 +00:00
|
|
|
|
2023-02-22 16:49:54 +00:00
|
|
|
for file in .ash_history .bash_history; do
|
|
|
|
if [ ! -f ${DATA_DIR}/.home/$file ]; then
|
|
|
|
touch /root/$file
|
|
|
|
cp /root/$file ${DATA_DIR}/.home/$file
|
|
|
|
chown root:root ${DATA_DIR}/.home/$file
|
|
|
|
chmod 0600 ${DATA_DIR}/.home/$file
|
|
|
|
fi
|
|
|
|
ln -sf ${DATA_DIR}/.home/$file /root/$file
|
|
|
|
done
|