blob: 98ece96fbec0fa0351f28b7d38ce68f78c81c09b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# arg 1: the new package version
post_install() {
cat << EOM
--> to support gpg, please use the following line in your ~/.muttrc
source /etc/Muttrc.gpg.dist
EOM
}
post_upgrade() {
post_install $1
}
|