diff options
author | Matteo Croce <rootkit85@yahoo.it> | 2008-05-19 22:08:46 +0000 |
---|---|---|
committer | Matteo Croce <rootkit85@yahoo.it> | 2008-05-19 22:08:46 +0000 |
commit | 0a1c669ec13cd3656c2e1124a4a83f2324f02bec (patch) | |
tree | 84de60341d29d0b4dff2686bcc6f42cf0bb55377 /package/base-files/files | |
parent | 779e43e18d995d7b5cd042e924af6d816bff4722 (diff) | |
download | upstream-0a1c669ec13cd3656c2e1124a4a83f2324f02bec.tar.gz upstream-0a1c669ec13cd3656c2e1124a4a83f2324f02bec.tar.bz2 upstream-0a1c669ec13cd3656c2e1124a4a83f2324f02bec.zip |
fix some wrong paths
SVN-Revision: 11217
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-x | package/base-files/files/etc/init.d/fstab | 12 |
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 } } |