30 lines
851 B
Diff
30 lines
851 B
Diff
From 657e832da0f7fb99e60dab9bb934071d81519dc5 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
|
|
Date: Mon, 16 Dec 2013 03:40:58 +0000
|
|
Subject: [PATCH] systemd: ensure autofs4 and ipv6 are included
|
|
|
|
Systemd tries to load this modules very early.
|
|
Even though they are not strictly required it it is a good
|
|
thing to have them around.
|
|
|
|
[Edited-by: Harald Hoyer: moved to installkernel() ]
|
|
---
|
|
modules.d/98systemd/module-setup.sh | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/modules.d/98systemd/module-setup.sh b/modules.d/98systemd/module-setup.sh
|
|
index 511b883f..91a6559d 100755
|
|
--- a/modules.d/98systemd/module-setup.sh
|
|
+++ b/modules.d/98systemd/module-setup.sh
|
|
@@ -17,6 +17,10 @@ depends() {
|
|
return 0
|
|
}
|
|
|
|
+installkernel() {
|
|
+ instmods autofs4 ipv6
|
|
+}
|
|
+
|
|
install() {
|
|
local _mods
|
|
|