aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/fstab
diff options
context:
space:
mode:
authorMatteo Croce <matteo@openwrt.org>2008-05-19 22:08:46 +0000
committerMatteo Croce <matteo@openwrt.org>2008-05-19 22:08:46 +0000
commitd1eb0e13398f1509a50525f634f06f7bfac26291 (patch)
tree1ba95bdbec0204f1c4985360f2cd13e41fc8f2d6 /package/base-files/files/etc/init.d/fstab
parentfed562cf4b10b76c81f87608094d238a97b8d6bc (diff)
downloadupstream-d1eb0e13398f1509a50525f634f06f7bfac26291.tar.gz
upstream-d1eb0e13398f1509a50525f634f06f7bfac26291.tar.bz2
upstream-d1eb0e13398f1509a50525f634f06f7bfac26291.zip
fix some wrong paths
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11217 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc/init.d/fstab')
-rwxr-xr-xpackage/base-files/files/etc/init.d/fstab12
1 files changed, 6 insertions, 6 deletions
diff --git a/package/base-files/files/etc/init.d/fstab b/package/base-files/files/etc/init.d/fstab
index b96e0c8a54..2d2976ffcb 100755
--- a/package/base-files/files/etc/init.d/fstab
+++ b/package/base-files/files/etc/init.d/fstab
@@ -16,7 +16,7 @@ do_mount() {
mkdir -p $target
config_get_bool enabled "$cfg" "enabled" '1'
[ "$enabled" -gt 0 ] && {
- /bin/mount -t $fstype -o $options $device $target
+ mount -t $fstype -o $options $device $target
}
}
@@ -25,8 +25,8 @@ do_swapon() {
config_get device "$cfg" device
[ -n "device" ] || return 0
config_get_bool enabled "$cfg" "enabled" '1'
- [ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapon ] && {
- /usr/sbin/swapon $device
+ [ "$enabled" -gt 0 ] && type swapon >/dev/null && {
+ swapon $device
}
}
@@ -36,7 +36,7 @@ do_unmount() {
[ -n "target" ] || return 0
config_get_bool enabled "$cfg" "enabled" '1'
[ "$enabled" -gt 0 ] && {
- /bin/umount $target
+ umount $target
}
}
@@ -45,8 +45,8 @@ do_swapoff() {
config_get device "$cfg" device
[ -n "device" ] || return 0
config_get_bool enabled "$cfg" "enabled" '1'
- [ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapoff ] && {
- /usr/sbin/swapoff $device
+ [ "$enabled" -gt 0 ] && type swapoff >/dev/null && {
+ swapoff $device
}
}