diff options
Diffstat (limited to 'init.d.BSD')
-rw-r--r-- | init.d.BSD/Makefile | 2 | ||||
-rw-r--r-- | init.d.BSD/swap-blk.in | 23 |
2 files changed, 1 insertions, 24 deletions
diff --git a/init.d.BSD/Makefile b/init.d.BSD/Makefile index 6d555813..b83e4216 100644 --- a/init.d.BSD/Makefile +++ b/init.d.BSD/Makefile @@ -1,6 +1,6 @@ DIR= /etc/init.d SRCS= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \ - rpcbind.in savecore.in swap-blk.in sysctl.in syslogd.in + rpcbind.in savecore.in sysctl.in syslogd.in BIN= ${OBJS} MK= ../mk diff --git a/init.d.BSD/swap-blk.in b/init.d.BSD/swap-blk.in deleted file mode 100644 index 4708bfff..00000000 --- a/init.d.BSD/swap-blk.in +++ /dev/null @@ -1,23 +0,0 @@ -#!@PREFIX@/sbin/runscript -# Copyright 2007-2008 Roy Marples <roy@marples.name> -# All rights reserved. Released under the 2-clause BSD license. - -depend() -{ - before fsck - keyword nojail noprefix -} - -start() -{ - ebegin "Activating block swap devices" - swapctl -A -t blk >/dev/null - eend 0 # If swapon has nothing todo it errors, so always return 0 -} - -stop() -{ - ebegin "Deactivating block swap devices" - swapctl -U -t blk >/dev/null - eend 0 -} |