mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-12 07:50:16 +02:00
fix swap{on,off} path
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10863 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3e4b847450
commit
0938cd3031
@ -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 ] && [ -x /sbin/swapon ] && {
|
||||
/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 /usr/sbin/swapoff ] && {
|
||||
/usr/sbin/swapoff $device
|
||||
[ "$enabled" -gt 0 ] && [ -x /sbin/swapoff ] && {
|
||||
/sbin/swapoff $device
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user