Sindbad~EG File Manager

Current Path : /var/tmp/mergemaster/preserved-files-170206-102132/etc/rc.d/
Upload File :
Current File : //var/tmp/mergemaster/preserved-files-170206-102132/etc/rc.d/zvol

#!/bin/sh
#
# $FreeBSD: releng/9.2/etc/rc.d/zvol 219090 2011-02-27 19:44:10Z pjd $
#

# PROVIDE: zvol
# REQUIRE: hostid
# 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"

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists