Unverified Commit c7b90450 authored by linux-insideDE's avatar linux-insideDE Committed by GitHub
Browse files

make shfmt happy

parent 48e80220
......@@ -23,8 +23,8 @@ dns_netcup_add() {
exit=$(_math "$exit" + 1)
i=$exit
while [ "$exit" -gt 0 ]
do
while
[ "$exit" -gt 0 ]; do
tmp=$(echo "$fulldomain" | cut -d'.' -f"$exit")
if [ "$(_math "$i" - "$exit")" -eq 0 ]; then
domain="$tmp"
......@@ -39,7 +39,7 @@ dns_netcup_add() {
_err "$msg"
return 1
else
break;
break
fi
fi
fi
......@@ -59,8 +59,8 @@ dns_netcup_rm() {
i=$exit
rec=""
while [ "$exit" -gt 0 ]
do
while
[ "$exit" -gt 0 ]; do
tmp=$(echo "$fulldomain" | cut -d'.' -f"$exit")
if [ "$(_math "$i" - "$exit")" -eq 0 ]; then
domain="$tmp"
......@@ -76,7 +76,7 @@ dns_netcup_rm() {
_err "$msg"
return 1
else
break;
break
fi
fi
fi
......@@ -87,8 +87,8 @@ dns_netcup_rm() {
idv=0001
ids=0000000000
i=1
while [ "$i" -ne 0 ];
do
while
[ "$i" -ne 0 ]; do
specrec=$(_getfield "$rec" "$i" ";")
idv="$ida"
ida=$(_getfield "$specrec" "1" "," | sed 's/\"id\":\"//g' | sed 's/\"//g')
......
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