From 84813a13ac2f72e3f13cca72789e97620b481ff3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 6 Mar 2013 13:18:17 +0100 Subject: [PATCH] util-linux: use vm.swappiness=10 per default Signed-off-by: Stephan Raue --- packages/sysutils/util-linux/scripts/32_swapfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/util-linux/scripts/32_swapfile b/packages/sysutils/util-linux/scripts/32_swapfile index 0a21f425d0..42caea6a12 100644 --- a/packages/sysutils/util-linux/scripts/32_swapfile +++ b/packages/sysutils/util-linux/scripts/32_swapfile @@ -45,6 +45,6 @@ fi for i in $SWAP; do swapon -p 10000 $SWAP 2>&1 > /dev/null done - sysctl -w vm.swappiness=1 2>&1 > /dev/null + sysctl -w vm.swappiness=10 2>&1 > /dev/null fi )&