mirror of
https://github.com/cimryan/teslausb.git
synced 2026-03-01 04:30:33 +00:00
11 lines
283 B
Bash
11 lines
283 B
Bash
#!/bin/bash -eu
|
|
|
|
function configure_archive () {
|
|
echo "Configuring the rsync archive..."
|
|
|
|
echo "user=$RSYNC_USER" > /root/.teslaCamRsyncConfig
|
|
echo "server=$RSYNC_SERVER" >> /root/.teslaCamRsyncConfig
|
|
echo "path=$RSYNC_PATH" >> /root/.teslaCamRsyncConfig
|
|
}
|
|
|
|
configure_archive |