summarylogtreecommitdiffstats
path: root/install
blob: f4a2170b6b479f30d103d52027fbca27fed056bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    cat <<HELPEOF
To use this hook add it to the HOOKS array in your /etc/mkinitcpio.conf.
HELPEOF

    mkinitcpio -H multiencrypt || true
}

post_upgrade() {
    post_install "$1"
}

# vim:set ts=4 sw=4 et: