aboutsummaryrefslogtreecommitdiff
path: root/init.d/sysctl.in
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-26 09:36:34 +0000
committerRoy Marples <roy@marples.name>2008-03-26 09:36:34 +0000
commit6af2b20297afb9cca88eb4843997c87eb48a5429 (patch)
tree5716be748b0139abe4421cab3679e0abcebe5915 /init.d/sysctl.in
parent1b40379a79cb96d9ca8fb0d268a73fe7426fbf5c (diff)
Split sysctl into Linux and BSD specific files.
Diffstat (limited to 'init.d/sysctl.in')
-rw-r--r--init.d/sysctl.in37
1 files changed, 0 insertions, 37 deletions
diff --git a/init.d/sysctl.in b/init.d/sysctl.in
deleted file mode 100644
index fdaf8ee2..00000000
--- a/init.d/sysctl.in
+++ /dev/null
@@ -1,37 +0,0 @@
-#!@PREFIX@/sbin/runscript
-# Copyright 2007-2008 Roy Marples <roy@marples.name>
-# All rights reserved. Released under the 2-clause BSD license.
-
-depend()
-{
- use hostname
- before bootmisc logger
- keyword noprefix
-}
-
-sysctl_BSD() {
- local retval=0 var= comments=
- while read var comments; do
- case "${var}" in
- ""|"#"*) continue;;
- esac
- sysctl -w "${var}" >/dev/null || retval=1
- done < /etc/sysctl.conf
- return ${retval}
-}
-
-sysctl_Linux() {
- sysctl -p >/dev/null
-}
-
-start()
-{
- [ -e /etc/sysctl.conf ] || return 0
-
- ebegin "Configuring kernel parameters"
- case "${RC_UNAME}" in
- Linux) sysctl_Linux;;
- *) sysctl_BSD;;
- esac
- eend $? "Some errors were encountered"
-}