mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 23:43:25 +00:00
40b2ef7560
r299839: Make FILESYSTEMS, dumpon, and var not depend on zfs and zvol Make zfs and zvol come before all of the items that depended on them previously r299840: Conditionalize etc/rc.d/{zfs,zvol} install on MK_ZFS != no r299841: Remove etc/rc.d/{zfs,zvol} if MK_ZFS != no
47 lines
726 B
Bash
Executable File
47 lines
726 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: zvol
|
|
# REQUIRE: hostid
|
|
# BEFORE: dumpon
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="zvol"
|
|
rcvar="zfs_enable"
|
|
start_cmd="zvol_start"
|
|
stop_cmd="zvol_stop"
|
|
required_modules="zfs"
|
|
|
|
zvol_start()
|
|
{
|
|
# Enable swap on ZVOLs with property org.freebsd:swap=on.
|
|
zfs list -H -o org.freebsd:swap,name -t volume | \
|
|
while read state name; do
|
|
case "${state}" in
|
|
[oO][nN])
|
|
swapon /dev/zvol/${name}
|
|
;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
zvol_stop()
|
|
{
|
|
# Disable swap on ZVOLs with property org.freebsd:swap=on.
|
|
zfs list -H -o org.freebsd:swap,name -t volume | \
|
|
while read state name; do
|
|
case "${state}" in
|
|
[oO][nN])
|
|
swapoff /dev/zvol/${name}
|
|
;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|