Commit 3a29e034 authored by Lorenz Stechauner's avatar Lorenz Stechauner
Browse files

dns_world4you: Use _lower_case instead of tr


Signed-off-by: default avatarLorenz Stechauner <lorenz.stechauner@necronda.net>
parent 29f12dda
...@@ -12,7 +12,7 @@ RECORD='' ...@@ -12,7 +12,7 @@ RECORD=''
# Usage: dns_world4you_add <fqdn> <value> # Usage: dns_world4you_add <fqdn> <value>
dns_world4you_add() { dns_world4you_add() {
fqdn=$(echo "$1" | tr '[:upper:]' '[:lower:]') fqdn=$(echo "$1" | _lower_case)
value="$2" value="$2"
_info "Using world4you to add record" _info "Using world4you to add record"
_debug fulldomain "$fqdn" _debug fulldomain "$fqdn"
...@@ -74,7 +74,7 @@ dns_world4you_add() { ...@@ -74,7 +74,7 @@ dns_world4you_add() {
# Usage: dns_world4you_rm <fqdn> <value> # Usage: dns_world4you_rm <fqdn> <value>
dns_world4you_rm() { dns_world4you_rm() {
fqdn=$(echo "$1" | tr '[:upper:]' '[:lower:]') fqdn=$(echo "$1" | _lower_case)
value="$2" value="$2"
_info "Using world4you to remove record" _info "Using world4you to remove record"
_debug fulldomain "$fqdn" _debug fulldomain "$fqdn"
......
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