NetBSD/etc/rc.d/swap2

37 lines
741 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: swap2,v 1.3 2000/05/13 08:45:09 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: nonlocalswap
# BEFORE: DAEMON
2000-03-10 14:53:23 +03:00
# 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
2000-03-10 14:53:23 +03:00
run_rc_command "$1"