mirror of
https://github.com/cimryan/teslausb.git
synced 2026-03-01 12:40:33 +00:00
10 lines
226 B
Bash
10 lines
226 B
Bash
#!/bin/bash -eu
|
|
|
|
function configure_archive () {
|
|
echo "Configuring the rsync archive..."
|
|
|
|
local config_file_path="/root/.teslaCamRsyncConfig"
|
|
/root/bin/write-archive-configs-to.sh "$config_file_path"
|
|
}
|
|
|
|
configure_archive |