summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-04 00:29:43 +0000
committerRoy Marples <roy@marples.name>2008-03-04 00:29:43 +0000
commit9f0d99020a9a4df9389ddb40979fad54598c3e28 (patch)
treed25e0acc5a118759bb3db1691fb8344bdbf8234b /init.d
parent9a1f3768a5a2453b71092cab169a6bf47b065f63 (diff)
downloadopenrc-9f0d99020a9a4df9389ddb40979fad54598c3e28.tar.gz
openrc-9f0d99020a9a4df9389ddb40979fad54598c3e28.tar.bz2
openrc-9f0d99020a9a4df9389ddb40979fad54598c3e28.tar.xz
swapctl -t doesn't work on fbsd.
Diffstat (limited to 'init.d')
-rw-r--r--init.d/swap.in18
1 files changed, 8 insertions, 10 deletions
diff --git a/init.d/swap.in b/init.d/swap.in
index 4e02798..6b2f705 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
}