various
parent
b8d80856f8
commit
5dc53f1963
|
@ -12,7 +12,7 @@ fi
|
|||
|
||||
me_filename="$(basename "$(realpath -s "$0")")"
|
||||
backup_scripts_dir="$(get_config_dir "sh.zio.backup")/scripts"
|
||||
cache_dir="/var/cache/sh.zio.backup/restic"
|
||||
cache_dir="$(get_config_dir "sh.zio.backup" "/var/cache")/restic"
|
||||
secrets_dir="$(get_config_dir "sh.zio.backup")/secrets"
|
||||
host="$(hostname -s)"
|
||||
now="$(date +"%Y-%m-%d %H:%M:%S")"
|
||||
|
|
|
@ -10,14 +10,19 @@ function die() {
|
|||
}
|
||||
|
||||
function get_config_dir() {
|
||||
prog="$1"
|
||||
prog="$(echo $1 | sed -e "s/sh.zio.//g")"
|
||||
prefix="/etc/zio"
|
||||
|
||||
if [[ -n "$2" ]]; then
|
||||
prefix="$2"
|
||||
fi
|
||||
|
||||
config_dir=""
|
||||
|
||||
if [[ ! -z $prog ]]; then
|
||||
config_dir="/etc/zio/$prog"
|
||||
config_dir="$prefix/$prog"
|
||||
else
|
||||
config_dir="/etc/zio"
|
||||
config_dir="$prefix"
|
||||
fi
|
||||
|
||||
if [[ ! -d "$config_dir" ]]; then
|
||||
|
|
Loading…
Reference in New Issue