blob: 125bf314d51dda6fd9669c295ed68d423908b02a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/sh
#
# $NetBSD: swap2,v 1.8 2009/09/24 16:45:48 apb Exp $
#
# PROVIDE: nonlocalswap
# REQUIRE: mountcritremote
# BEFORE: DAEMON
$_rc_subr_loaded . /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...).
#
# Treat exit status 2 from swapctl(8) as successful; it means
# "no error, but no suitable swap devices were configured".
#
# Check for no swap, and warn about it unless that is desired.
#
local es
swapctl -A -t noblk
es=$?
[ $es = 2 ] && es=0
if ! checkyesno no_swap; then
if swapctl -s | grep "no swap devices configured" > /dev/null;
then
warn "No swap space configured!"
es=1
fi
fi
return $es
}
# Remove all non-block-type swap devices
#
stop_cmd="swapctl -U -t noblk || [ $? = 2 ]"
load_rc_config swap
run_rc_command "$1"
|