mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
17 lines
199 B
Bash
Executable file
17 lines
199 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: localswap
|
|
# REQUIRE: disks
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="swap1"
|
|
start_cmd='swapon -aq'
|
|
stop_cmd=':'
|
|
|
|
load_rc_config swap
|
|
run_rc_command "$1"
|