Skip to content

Commit

Permalink
Merge pull request #75 from freedomofpress/client-postinst-actions
Browse files Browse the repository at this point in the history
Add securedrop-client postinst script
  • Loading branch information
conorsch committed Aug 8, 2019
2 parents 7baa4a2 + 0c89aed commit 2bb5c3e
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions securedrop-client/debian/postinst
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/bin/sh
# postinst script for securedrop-export
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <postinst> `abort-remove'
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see https://www.debian.org/doc/debian-policy/ or
# the debian-policy package


case "$1" in
configure)

update-desktop-database /usr/share/applications
;;

abort-upgrade|abort-remove|abort-deconfigure)

update-desktop-database /usr/share/applications
;;

*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0

0 comments on commit 2bb5c3e

Please sign in to comment.