From: Daniel Molkentin Date: Thu, 17 Nov 2016 10:22:48 +0000 (+0100) Subject: Add md4 and arc4 modules for ntlm X-Git-Tag: 045~17^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F178%2Fhead;p=thirdparty%2Fdracut.git Add md4 and arc4 modules for ntlm Some crashkernel targets still use legacy NTLM auth, which require those (bsc#869496). This patch enumerates all dependent hash algorithems, because even though most of them are probably compiled in, older ones (e.g. md4 and arc4) usually aren't. --- diff --git a/modules.d/95cifs/module-setup.sh b/modules.d/95cifs/module-setup.sh index f711458f2..b6f69846c 100755 --- a/modules.d/95cifs/module-setup.sh +++ b/modules.d/95cifs/module-setup.sh @@ -24,6 +24,12 @@ depends() { # called by dracut installkernel() { instmods cifs ipv6 + # hash algos + instmods md4 md5 sha256 + # ciphers + instmods aes arc4 des ecb + # macs + instmods hmac cmac } # called by dracut