X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=sh-lib;h=9330a5b96a573fcc068cadffe668d9483cf3d43f;hb=b5f52532f74db9169af647f015dbb396f19c889a;hp=9896f71c44b1c4046ccc4b808c89a8e7d61eaa65;hpb=174f38e91192fb8a1f39298ec484a6e0f3ed9f84;p=grml-shlib.git diff --git a/sh-lib b/sh-lib index 9896f71..9330a5b 100644 --- a/sh-lib +++ b/sh-lib @@ -306,6 +306,16 @@ function checkRoot checkId 0 "$1" "$2" } +function isGrml +{ + if [ -f /etc/grml_version ] ; then + dprint "isGrml(): this seems to be a grml system" + return 0 + else + dprint "isGrml(): this is not a grml system" + return 1 + fi +} function runsFromHd { @@ -608,7 +618,7 @@ function _touchService function _createServiceFunctions { - for i in "start" "stop" "restart" "reload" "force-reload"; do + for i in "start" "stop" "restart" "reload" "forcereload"; do eval "function ${i}Service { _touchService ${i} \"\$1\" \"\$2\" \"\$3\"; }" done }