Commit a7d61461 authored by Miodrag Tokić's avatar Miodrag Tokić
Browse files

Extract configuration saving code to function

parent 978ec911
...@@ -18,9 +18,7 @@ dns_loopia_add() { ...@@ -18,9 +18,7 @@ dns_loopia_add() {
return 1 return 1
fi fi
#save the api key and email to the account conf file. _loopia_save_config
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
_debug "First detect the root zone" _debug "First detect the root zone"
if ! _get_root "$fulldomain"; then if ! _get_root "$fulldomain"; then
...@@ -45,9 +43,7 @@ dns_loopia_rm() { ...@@ -45,9 +43,7 @@ dns_loopia_rm() {
return 1 return 1
fi fi
#save the api key and email to the account conf file. _loopia_save_config
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
_debug "First detect the root zone" _debug "First detect the root zone"
if ! _get_root "$fulldomain"; then if ! _get_root "$fulldomain"; then
...@@ -101,6 +97,11 @@ _loopia_load_config() { ...@@ -101,6 +97,11 @@ _loopia_load_config() {
return 0 return 0
} }
_loopia_save_config() {
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
}
_loopia_get_records() { _loopia_get_records() {
domain=$1 domain=$1
sub_domain=$2 sub_domain=$2
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment