]> git.ipfire.org Git - thirdparty/dracut.git/blob - modules.d/03modsign/load-modsign-keys.sh
remove all vim and emacs code format comments
[thirdparty/dracut.git] / modules.d / 03modsign / load-modsign-keys.sh
1 #!/bin/sh
2 #
3 # Licensed under the GPLv2
4 #
5 # Copyright 2013 Red Hat, Inc.
6 # Peter Jones <pjones@redhat.com>
7
8 for x in /lib/modules/keys/* ; do
9 [ "${x}" = "/lib/modules/keys/*" ] && break
10 keyctl padd asymmetric "" @s < ${x}
11 done