Extract configuration saving code to function

This commit is contained in:
Miodrag Tokić 2019-03-05 20:21:14 +01:00
parent 978ec91107
commit a7d6146169
1 changed files with 7 additions and 6 deletions

View File

@ -18,9 +18,7 @@ dns_loopia_add() {
return 1
fi
#save the api key and email to the account conf file.
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
_loopia_save_config
_debug "First detect the root zone"
if ! _get_root "$fulldomain"; then
@ -45,9 +43,7 @@ dns_loopia_rm() {
return 1
fi
#save the api key and email to the account conf file.
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
_loopia_save_config
_debug "First detect the root zone"
if ! _get_root "$fulldomain"; then
@ -101,6 +97,11 @@ _loopia_load_config() {
return 0
}
_loopia_save_config() {
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
}
_loopia_get_records() {
domain=$1
sub_domain=$2