X-Git-Url: http://git.grml.org/?p=grml-shlib.git;a=blobdiff_plain;f=sh-lib;h=9896f71c44b1c4046ccc4b808c89a8e7d61eaa65;hp=e41be34798085a7ae6971286f560a2361e3f5d6f;hb=174f38e91192fb8a1f39298ec484a6e0f3ed9f84;hpb=2324ae084c8a9b19994cd4c335ba1830889ae2b8 diff --git a/sh-lib b/sh-lib index e41be34..9896f71 100644 --- a/sh-lib +++ b/sh-lib @@ -347,18 +347,12 @@ function secureInput function relToAbs { local relpath_="$1" - - local D_='' - local B_='' local abspath_='' - local end_path_='' - D_=`dirname "$relpath_"` - B_=`basename "$relpath_"` - abspath_=`cd "$D_" 2>/dev/null && pwd || echo "$D_"`/$B_ - end_path_=`echo "$abspath_" |tr --squeeze-repeats /` - dprint "relToAbs(): \"$relpath_\" => \"$end_path_\"" - echo "$end_path_" + abspath_="`readlink -f \"$relpath_\"`" || \ + warn "relToAbs(): Problems getting absolute path" "$?" || return 1 + dprint "relToAbs(): \"$relpath_\" => \"$abspath_\"" + echo "$abspath_" } # Simple shell grep @@ -551,7 +545,7 @@ function netGetNameservers fi setCLang - ns_=`awk '/^nameserver/{printf "%s ",$2}' $file_` + ns_=`awk '/^nameserver/{printf "%s ",$2}' $file_ |xargs echo` restoreLang if [ -z "$ns_" ]; then if [ -z "$message_" ]; then @@ -571,7 +565,7 @@ function netGetNameservers # SERVICES {{{ function _touchService { - local action_="${1:-start}" + local action_="${1:-"start"}" local service_="$2" local error_function_=${3:-"eprint"} # function to call on error local message_="$4" # user supplied error message @@ -709,7 +703,7 @@ function _setDebugLevel local debug_="${DEBUG:-0}" VERBOSE__="$debug_" } -_checkBootParam +_setDebugLevel # }}} # END OF FILE