#! /bin/sh

. "`dirname $0`/rcdefs"

case "$1" in
  start)
    BOOTLOG= Print -n "Starting swap space... "
    /sbin/swapon -a
    BOOTLOG= Print "done."
    ;;
  stop)
    BOOTLOG= Print -n "Stopping swap space... "
    /sbin/swapoff -a
    BOOTLOG= Print "done."
    ;;
  *)
    Usage "$0"
    exit 1
esac

exit 0
