From 9f0d99020a9a4df9389ddb40979fad54598c3e28 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Tue, 4 Mar 2008 00:29:43 +0000 Subject: swapctl -t doesn't work on fbsd. --- init.d/swap.in | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'init.d/swap.in') diff --git a/init.d/swap.in b/init.d/swap.in index 4e027982..6b2f7057 100644 --- a/init.d/swap.in +++ b/init.d/swap.in @@ -11,21 +11,19 @@ depend() start() { ebegin "Activating swap devices" - if type swapctl >/dev/null 2>&1; then - swapctl -A -t noblk >/dev/null - else - swapon -a >/dev/null - fi + case "${RC_UNAME}" in + NetBSD|OpenBSD) swapctl -A -t noblk >/dev/null;; + *) swapon -a >/dev/null;; + esac eend 0 # If swapon has nothing todo it errors, so always return 0 } stop() { ebegin "Deactivating swap devices" - if type swapctl >/dev/null 2>&1; then - swapctl -U -t noblk >/dev/null - else - swapoff -a >/dev/null - fi + case "${RC_UNAME}" in + NetBSD|OpenBSD) swapctl -U -t noblk >/dev/null;; + *) swapoff -a >/dev/null;; + esac eend 0 } -- cgit v1.2.3