Commit aeed2871 authored by Stephane Moser's avatar Stephane Moser
Browse files

Add Double quote to slowrateslepp

parent ea6a3c09
...@@ -75,7 +75,7 @@ dns_aws_add() { ...@@ -75,7 +75,7 @@ dns_aws_add() {
_info "TXT record updated successfully." _info "TXT record updated successfully."
if [ -n "$slowrateslepp" ]; then if [ -n "$slowrateslepp" ]; then
_info "Slow rate activated: sleeping for $slowrateslepp seconds" _info "Slow rate activated: sleeping for $slowrateslepp seconds"
sleep $slowrateslepp sleep "$slowrateslepp"
fi fi
return 0 return 0
fi fi
...@@ -124,7 +124,7 @@ dns_aws_rm() { ...@@ -124,7 +124,7 @@ dns_aws_rm() {
_info "TXT record deleted successfully." _info "TXT record deleted successfully."
if [ -n "$slowrateslepp" ]; then if [ -n "$slowrateslepp" ]; then
_info "Slow rate activated: sleeping for $slowrateslepp seconds" _info "Slow rate activated: sleeping for $slowrateslepp seconds"
sleep $slowrateslepp sleep "$slowrateslepp"
fi fi
return 0 return 0
fi fi
......
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