added isGrml()
[grml-shlib.git] / sh-lib
diff --git a/sh-lib b/sh-lib
index 9896f71..51c2e79 100644 (file)
--- 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
 {