diff options
Diffstat (limited to 'nonprism-testing/icedove/icedove.install')
-rw-r--r-- | nonprism-testing/icedove/icedove.install | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/nonprism-testing/icedove/icedove.install b/nonprism-testing/icedove/icedove.install index a01634bcf..dc20b4f9b 100644 --- a/nonprism-testing/icedove/icedove.install +++ b/nonprism-testing/icedove/icedove.install @@ -1,10 +1,8 @@ -post_install() { - update-desktop-database -q - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor - cat <<EOM +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 @@ -18,14 +16,21 @@ 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() { + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + notice +} + post_upgrade() { post_install } post_remove() { - post_install + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor } |