From 9b3940931ddc30603f6a65f9b28ece578984a900 Mon Sep 17 00:00:00 2001 From: Jens Schweikhardt Date: Sun, 24 Apr 2016 10:52:59 +0000 Subject: Cosmetics: - no need to escape the newline after '|' - parenthesize the "case" string for symmetry and improved search for matching paren (e.g. with vi's %) --- etc/rc.d/zvol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'etc/rc.d') diff --git a/etc/rc.d/zvol b/etc/rc.d/zvol index 03495220f0d6..6fdc280d46d8 100755 --- a/etc/rc.d/zvol +++ b/etc/rc.d/zvol @@ -19,10 +19,10 @@ 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 | \ + zfs list -H -o org.freebsd:swap,name -t volume | while read state name; do case "${state}" in - [oO][nN]) + ([oO][nN]) swapon /dev/zvol/${name} ;; esac @@ -32,10 +32,10 @@ zvol_start() zvol_stop() { # Disable swap on ZVOLs with property org.freebsd:swap=on. - zfs list -H -o org.freebsd:swap,name -t volume | \ + zfs list -H -o org.freebsd:swap,name -t volume | while read state name; do case "${state}" in - [oO][nN]) + ([oO][nN]) swapoff /dev/zvol/${name} ;; esac -- cgit v1.2.3