1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

base-files: Update /etc/init.d/fstab with new location of swapon and swapoff (they moved from /sbin to /usr/sbin)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11157 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
rwhitby
2008-05-17 00:13:05 +00:00
parent a11dfce7a2
commit 9dfc3e092d
2 changed files with 5 additions and 5 deletions

View File

@@ -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 /sbin/swapon ] && {
/sbin/swapon $device
[ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapon ] && {
/usr/sbin/swapon $device
}
}
@@ -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 /sbin/swapoff ] && {
/sbin/swapoff $device
[ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapoff ] && {
/usr/sbin/swapoff $device
}
}