summaryrefslogtreecommitdiff
path: root/package/ntfs-3g
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-06 12:36:57 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-06 12:37:21 +0200
commit498bfde15d0a9212ee3935bfe76076b7de69444c (patch)
tree455488bc596125568e9039dc552e4da4040cc825 /package/ntfs-3g
parente8d7893e45ad4f9ef306f11920ddee086c2c8897 (diff)
fix automounting of usb sticks
Diffstat (limited to 'package/ntfs-3g')
-rw-r--r--package/ntfs-3g/files/ntfs3g.init13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/ntfs-3g/files/ntfs3g.init b/package/ntfs-3g/files/ntfs3g.init
deleted file mode 100644
index 5f9164036..000000000
--- a/package/ntfs-3g/files/ntfs3g.init
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#INIT 20
-[[ $1 = autostart ]] || exit 0
-
-# mount ntfs-3g filesystems
-grep fuse /proc/filesystems >/dev/null 2>&1
-if [ $? -eq 0 ];then
- grep -v "^#" /etc/fstab |grep ntfs-3g >/dev/null 2>&1
- if [ $? -eq 0 ];then
- mount -a -t ntfs-3g
- fi
-fi
-exit 0