diff options
Diffstat (limited to 'nonprism-testing/iceweasel/iceweasel.install')
-rw-r--r-- | nonprism-testing/iceweasel/iceweasel.install | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/nonprism-testing/iceweasel/iceweasel.install b/nonprism-testing/iceweasel/iceweasel.install index 9a66d8b5a..e6187db6d 100644 --- a/nonprism-testing/iceweasel/iceweasel.install +++ b/nonprism-testing/iceweasel/iceweasel.install @@ -1,8 +1,8 @@ -post_install() { +notice() { cat <<EOM == IMPORTANT NOTICE == - This package contains several new patches that were introduced + This package contains several new patches that were introduced to strengthen and protect the end user from security and privacy threats. For users who wish to opt-out of privacy, you may override options in @@ -16,12 +16,16 @@ post_install() { * https://lists.parabola.nu/pipermail/dev/2016-October/004522.html * http://kb.mozillazine.org/About:config * http://kb.mozillazine.org/User.js_file - + EOM } +post_install() { + notice +} + post_upgrade() { post_install } -# vim:set ts=2 sw=2 et:
\ No newline at end of file +# vim:set ts=2 sw=2 et: |