mirror of
https://github.com/erenfro/systemrescue-backup.git
synced 2024-11-12 21:28:57 -05:00
14 lines
498 B
Bash
Executable file
14 lines
498 B
Bash
Executable file
#!/bin/bash
|
|
|
|
scriptPath="$(dirname "$(readlink -f "$0")")"
|
|
|
|
if [[ ! -f "${scriptPath}/profiles.toml" ]]; then
|
|
cp "${scriptPath}/templates/profiles.toml" "${scriptPath}/profiles.toml"
|
|
fi
|
|
if [[ ! -f "${scriptPath}/excludes" ]]; then
|
|
cp "${scriptPath}/templates/excludes" "${scriptPath}/excludes"
|
|
fi
|
|
if [[ ! -f "${scriptPath}/key" ]]; then
|
|
resticprofile generate --random-key > "${scriptPath}/key"
|
|
fi
|
|
chmod go-rwx "${scriptPath}/key" "${scriptPath}/profiles.toml" "${scriptPath}/excludes"
|