mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-10 04:42:31 +01:00
restic: add missing swift region option
This commit is contained in:
parent
1661e23a11
commit
8082d3d04a
@ -87,6 +87,8 @@ password = secret
|
|||||||
|
|
||||||
#os_password =
|
#os_password =
|
||||||
|
|
||||||
|
#os_region_name =
|
||||||
|
|
||||||
[b2]
|
[b2]
|
||||||
|
|
||||||
#b2_account_id =
|
#b2_account_id =
|
||||||
|
@ -50,6 +50,7 @@ getconf os_tenant_id
|
|||||||
getconf os_tenant_name
|
getconf os_tenant_name
|
||||||
getconf os_username
|
getconf os_username
|
||||||
getconf os_password
|
getconf os_password
|
||||||
|
getconf os_region_name
|
||||||
|
|
||||||
setsection b2
|
setsection b2
|
||||||
|
|
||||||
@ -157,7 +158,7 @@ fi
|
|||||||
# OpenStack Swift repository
|
# OpenStack Swift repository
|
||||||
if [ "$(echo "$repository" | /usr/bin/awk -F ':' '{print $1}')" == "swift" ]; then
|
if [ "$(echo "$repository" | /usr/bin/awk -F ':' '{print $1}')" == "swift" ]; then
|
||||||
|
|
||||||
[ -z "$os_auth_url" -o -z "$os_tenant_id" -o -z "$os_tenant_name" -o -z "$os_username" -o -z "$os_password" ] && \
|
[ -z "$os_auth_url" -o -z "$os_tenant_id" -o -z "$os_tenant_name" -o -z "$os_username" -o -z "$os_password" -o -z "$os_region_name" ] && \
|
||||||
fatal "Missing some Swift credentials."
|
fatal "Missing some Swift credentials."
|
||||||
|
|
||||||
export_debug OS_AUTH_URL "$os_auth_url"
|
export_debug OS_AUTH_URL "$os_auth_url"
|
||||||
@ -165,6 +166,7 @@ if [ "$(echo "$repository" | /usr/bin/awk -F ':' '{print $1}')" == "swift" ]; th
|
|||||||
export_debug OS_TENANT_NAME "$os_tenant_name"
|
export_debug OS_TENANT_NAME "$os_tenant_name"
|
||||||
export_debug OS_USERNAME "$os_username"
|
export_debug OS_USERNAME "$os_username"
|
||||||
export_debug OS_PASSWORD "$os_password"
|
export_debug OS_PASSWORD "$os_password"
|
||||||
|
export_debug OS_REGION_NAME "$os_region_name"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -453,6 +455,7 @@ unset OS_TENANT_ID
|
|||||||
unset OS_TENANT_NAME
|
unset OS_TENANT_NAME
|
||||||
unset OS_USERNAME
|
unset OS_USERNAME
|
||||||
unset OS_PASSWORD
|
unset OS_PASSWORD
|
||||||
|
unset OS_REGION_NAME
|
||||||
unset B2_ACCOUNT_ID
|
unset B2_ACCOUNT_ID
|
||||||
unset B2_ACCOUNT_KEY
|
unset B2_ACCOUNT_KEY
|
||||||
unset AZURE_ACCOUNT_NAME
|
unset AZURE_ACCOUNT_NAME
|
||||||
|
Loading…
Reference in New Issue
Block a user