ed07259681
This package contains all files required for booting the lsXL linux system built through xbps. Currently it uses the NetBSD rc.d(8) system, sysvinit and modified BSD style scripts modified from Arch linux. --HG-- extra : convert_revision : 4584be26dd672ba33f9b1d76534a22d4715664ea
20 lines
253 B
Bash
Executable file
20 lines
253 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# PROVIDE: swap
|
|
# REQUIRE: SERVERS mountfs
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="swap"
|
|
start_cmd="swap_start"
|
|
stop_cmd=":"
|
|
|
|
swap_start()
|
|
{
|
|
echo -n "=> Activating swap... "
|
|
swapon -a
|
|
show_rval
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|