blob: f4fa328b73b08c2564db35b101b749e5c7ab86af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo "Edit the config at /etc/dracut-sb/efi-key.conf to contain the correct info,"
echo "plug in the drive with the keys, then Press Enter"
read
/usr/local/share/libalpm/scripts/efi-key
echo "" | /usr/local/share/libalpm/scripts/dracut-install
}
post_upgrade() {
/usr/local/share/libalpm/scripts/efi-key
echo "" | /usr/local/share/libalpm/scripts/dracut-install
}
post_remove() {
echo "" | /usr/local/share/libalpm/scripts/dracut-install
}
|