From: Daniel Mack Date: Fri, 5 Jun 2015 12:59:36 +0000 (+0200) Subject: kmod-setup: don't warn when ipv6 can't be loaded X-Git-Tag: v221~172^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F79%2Fhead;p=thirdparty%2Fsystemd.git kmod-setup: don't warn when ipv6 can't be loaded Not having IPv6 is a valid setup. Let's not print a warning in that case. Addresses: https://bugs.freedesktop.org/show_bug.cgi?id=87475 --- diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index 6cc59517195..96379058a11 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -60,7 +60,7 @@ int kmod_setup(void) { { "autofs4", "/sys/class/misc/autofs", true, NULL }, /* early configure of ::1 on the loopback device */ - { "ipv6", "/sys/module/ipv6", true, NULL }, + { "ipv6", "/sys/module/ipv6", false, NULL }, /* this should never be a module */ { "unix", "/proc/net/unix", true, NULL },