9468063a70
Without this change, if one had a swap-on-mirror configuration, gmirror will rebuild mirror component(s) on boot, because they are dirty (they were open on shutdown).
19 lines
270 B
Bash
Executable File
19 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: swap1,v 1.8 2002/03/24 15:52:41 lukem Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: localswap
|
|
# REQUIRE: disks
|
|
# KEYWORD: FreeBSD nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="swap1"
|
|
start_cmd='swapon -a'
|
|
stop_cmd='swapoff -a'
|
|
|
|
load_rc_config swap
|
|
run_rc_command "$1"
|