blob: b10b9c4b32f3f556624dd5689364ad1238e64102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
post_install() {
cat<<INSTALLEOF
This package provides a series of utilities meant to be used with mkinitcpio.
As of this version, it provides the encryptssh hook and the cryptsetup_shell,
to be used in conjunction with mkinitcpio-dropbear or mkinitcpio-tinyssh.
INSTALLEOF
}
post_remove() {
cat<<REMOVEEOF
Remove any hook(s) from this package that were inserted in your mkinitcpio.conf
and rebuild the initramfs.
REMOVEEOF
}
post_upgrade() {
post_install
}
|