Chapter 29. check_kernel.linux.vm.swappiness.sh

#!/bin/sh

SWAPPINESS=`cat /proc/sys/vm/swappiness`

if [ $SWAPPINESS != '0' ]
then
        echo /proc/sys/vm/swappiness is not 0, it is $SWAPPINESS
fi