#! /bin/sh

. init-script-lib

case $1 in 
	start)
		fatal need filesystems
		say engaging swapfiles
		fatal swapon -a
		;;
	stop)
		say disengaging swapfiles
		fatal swapoff -a
		;;
esac
