2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-03-24 18:52:41 +03:00
|
|
|
# $NetBSD: swap1,v 1.8 2002/03/24 15:52:41 lukem Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: localswap
|
2000-04-26 09:13:51 +04:00
|
|
|
# REQUIRE: disks
|
2002-03-22 02:08:35 +03:00
|
|
|
# KEYWORD: shutdown
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="swap1"
|
2001-04-14 02:31:16 +04:00
|
|
|
start_cmd="swap1_start"
|
2002-03-22 02:08:35 +03:00
|
|
|
stop_cmd="swap1_stop"
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
# Add all block-type swap devices; these might be necessary
|
|
|
|
# during disk checks.
|
|
|
|
#
|
2001-04-14 02:31:16 +04:00
|
|
|
swap1_start()
|
|
|
|
{
|
|
|
|
if ! checkyesno no_swap; then
|
|
|
|
swapctl -A -t blk
|
|
|
|
fi
|
|
|
|
}
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
# Remove all block-type swap devices
|
|
|
|
#
|
2002-03-22 02:08:35 +03:00
|
|
|
swap1_stop()
|
|
|
|
{
|
2002-03-24 18:52:41 +03:00
|
|
|
if checkyesno swapoff || [ -n "$rc_force" ]; then
|
2002-03-22 02:08:35 +03:00
|
|
|
echo "Removing block-type swap devices"
|
|
|
|
swapctl -U -t blk
|
|
|
|
fi
|
|
|
|
}
|
2000-03-10 14:53:23 +03:00
|
|
|
|
2000-07-17 16:27:04 +04:00
|
|
|
load_rc_config swap
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|