mirror of
https://github.com/cimryan/teslausb.git
synced 2026-02-28 20:20:32 +00:00
19 lines
471 B
Bash
19 lines
471 B
Bash
#!/bin/bash -eu
|
|
|
|
function configure_archive () {
|
|
echo "Configuring rclone archive..."
|
|
|
|
local config_file_path="/root/.teslaCamRcloneConfig"
|
|
/root/bin/write-archive-configs-to.sh "$config_file_path"
|
|
|
|
if [ ! -L "/root/.config/rclone" ] && [ -e "/root/.config/rclone" ]
|
|
then
|
|
echo "Moving rclone configs into /mutable"
|
|
mv /root/.config/rclone /mutable/configs
|
|
ln -s /mutable/configs/rclone /root/.config/rclone
|
|
fi
|
|
|
|
echo "Done"
|
|
}
|
|
|
|
configure_archive |