aboutsummarylogtreecommitdiffstats
path: root/checkboot-efi.install
blob: f4f849c9b25555c6b6c0ee9f564c803b43aaa549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

post_install() {
    cat<<INSTALLEOF
    You will need to manually configure and add the hook.
    Look in /etc/checkboot-efi.conf for more information.
    Don't forget to create the checksums and update the
    initramfs. The name of the hook is "checkboot-efi". Add
    it before the encrypt hook.
INSTALLEOF
}

post_remove() {
    cat<<REMOVEEOF
    Remove the "checkboot-efi" from the "HOOKS" section in "/etc/mkinitcpio.conf"
    and rebuild the initramfs.
REMOVEEOF
}

post_upgrade() {
    post_install
}