blob: f82e60befaf8f4f9d318de523e8e86d245948c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
notice() {
cat <<EOM
== IMPORTANT NOTICE ==
This package contains several patches that were introduced
to strengthen and protect the end user from security threats.
In addition, it was adapted to be installed side by side with
iceweasel. This way you could running 'iceweasel-hardened'
and use just 'iceweasel' where needed.
EOM
}
post_install() {
notice
}
post_upgrade() {
post_install
}
# vim:set ts=2 sw=2 et:
|