]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
Add md4 and arc4 modules for ntlm 178/head
authorDaniel Molkentin <dmolkentin@suse.com>
Thu, 17 Nov 2016 10:22:48 +0000 (11:22 +0100)
committerDaniel Molkentin <dmolkentin@suse.com>
Thu, 17 Nov 2016 15:56:53 +0000 (16:56 +0100)
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.

modules.d/95cifs/module-setup.sh

index f711458f2969ac0b6873599da2795d168eea1add..b6f69846cd0561d8e484e0eee4ad128e9b8966f2 100755 (executable)
@@ -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