2013-06-27 18:28:45 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: swaplate
|
|
|
|
# REQUIRE: mountlate
|
|
|
|
# KEYWORD: nojail shutdown
|
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="swaplate"
|
2016-04-23 16:10:54 +00:00
|
|
|
desc="Setup late swap space"
|
2013-06-27 18:28:45 +00:00
|
|
|
start_cmd='/sbin/swapon -aLq'
|
2016-10-21 21:55:50 +00:00
|
|
|
stop_cmd='/sbin/swapoff -aLq'
|
2013-06-27 18:28:45 +00:00
|
|
|
|
|
|
|
load_rc_config swap
|
|
|
|
run_rc_command "$1"
|