summaryrefslogtreecommitdiff
path: root/init.d.Linux/modules
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-02-19 14:29:20 +0000
committerRoy Marples <roy@marples.name>2008-02-19 14:29:20 +0000
commit42bfd7b6dc6d1ebc49c1c6b24e21772df4f6967b (patch)
treeb9e514617292c7ad1bf8df15b262beb42278e0f4 /init.d.Linux/modules
parent0364bb2c84bff631e0f765254fc6bf3353950128 (diff)
downloadopenrc-42bfd7b6dc6d1ebc49c1c6b24e21772df4f6967b.tar.gz
openrc-42bfd7b6dc6d1ebc49c1c6b24e21772df4f6967b.tar.bz2
openrc-42bfd7b6dc6d1ebc49c1c6b24e21772df4f6967b.tar.xz
Move the shell code to check for RC_SYS to the keywords dependency.
Diffstat (limited to 'init.d.Linux/modules')
-rwxr-xr-xinit.d.Linux/modules3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.d.Linux/modules b/init.d.Linux/modules
index f4f9a89..f29d0a1 100755
--- a/init.d.Linux/modules
+++ b/init.d.Linux/modules
@@ -7,13 +7,14 @@ description="Loads a user defined list of kernel modules."
depend()
{
use isapnp
+ keywords novps
}
start()
{
# Should not fail if kernel do not have module
# support compiled in ...
- [ ! -f /proc/modules -o "${RC_SYS}" = "VPS" ] && return 0
+ [ ! -f /proc/modules ] && return 0
local KV=$(uname -r)
local KV_MAJOR=${KV%%.*}