summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-system/fix_myth_mount.sh
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/LinHES-system/fix_myth_mount.sh')
-rw-r--r--abs/core/LinHES-system/fix_myth_mount.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/core/LinHES-system/fix_myth_mount.sh b/abs/core/LinHES-system/fix_myth_mount.sh
new file mode 100644
index 0000000..2ed9783
--- /dev/null
+++ b/abs/core/LinHES-system/fix_myth_mount.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+function checkmount {
+ mounted=1
+ for i in `cat /proc/mounts | cut -d' ' -f2`; do
+ if [ "x$1" = "x$i" ]; then
+ mounted=0
+ break
+ fi
+
+ done
+ return $mounted
+}
+
+checkmount $1
+rc=$?
+
+if [ $rc == 0 ]
+then
+ echo "fs is mounted"
+else
+ echo "fs is not mounted"
+fi \ No newline at end of file