30 lines
435 B
Bash
Executable File
30 lines
435 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: swap1,v 1.6 2001/04/13 22:31:16 msaitoh Exp $
|
|
#
|
|
|
|
# PROVIDE: localswap
|
|
# REQUIRE: disks
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="swap1"
|
|
start_cmd="swap1_start"
|
|
|
|
# Add all block-type swap devices; these might be necessary
|
|
# during disk checks.
|
|
#
|
|
swap1_start()
|
|
{
|
|
if ! checkyesno no_swap; then
|
|
swapctl -A -t blk
|
|
fi
|
|
}
|
|
|
|
# Remove all block-type swap devices
|
|
#
|
|
stop_cmd="swapctl -U -t blk"
|
|
|
|
load_rc_config swap
|
|
run_rc_command "$1"
|