NetBSD/etc/rc.d/swap2
lukem 5c1b0ec207 Use load_rc_config() (from rc.subr) instead of sourcing /etc/rc.conf.
This allows us or a user to change the configuration file method in
one place - rc.subr - without having to edit all of the rc.d/* files.
2000-05-13 08:45:06 +00:00

37 lines
741 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: swap2,v 1.3 2000/05/13 08:45:09 lukem Exp $
#
# PROVIDE: nonlocalswap
# BEFORE: DAEMON
# REQUIRE: mountcritremote
. /etc/rc.subr
name="swap2"
start_cmd="swap2_start"
swap2_start()
{
# "Critical" file systems are now mounted. Go ahead and swap
# to files now, since they will be residing in the critical file
# systems (or, at least, they should be...).
# Check for no swap, and warn about it unless that is desired.
#
swapctl -A -t noblk;
if ! checkyesno no_swap; then
if swapctl -s | grep "no swap devices configured" > /dev/null;
then
warn "No swap space configured!"
fi
fi
}
# Remove all non-block-type swap devices
#
stop_cmd="swapctl -U -t noblk"
load_rc_config $name
run_rc_command "$1"