diff options
| -rw-r--r-- | debian/cgit.postinst | 43 | ||||
| -rw-r--r-- | debian/cgit.postrm | 44 | 
2 files changed, 87 insertions, 0 deletions
diff --git a/debian/cgit.postinst b/debian/cgit.postinst new file mode 100644 index 0000000..2988dd6 --- /dev/null +++ b/debian/cgit.postinst  | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # postinst script for cgit | ||
| 3 | # | ||
| 4 | # see: dh_installdeb(1) | ||
| 5 | |||
| 6 | set -e | ||
| 7 | |||
| 8 | # summary of how this script can be called: | ||
| 9 | # * <postinst> `configure' <most-recently-configured-version> | ||
| 10 | # * <old-postinst> `abort-upgrade' <new version> | ||
| 11 | # * <conflictor's-postinst> `abort-remove' `in-favour' <package> | ||
| 12 | # <new-version> | ||
| 13 | # * <postinst> `abort-remove' | ||
| 14 | # * <deconfigured's-postinst> `abort-deconfigure' `in-favour' | ||
| 15 | # <failed-install-package> <version> `removing' | ||
| 16 | # <conflicting-package> <version> | ||
| 17 | # for details, see http://www.debian.org/doc/debian-policy/ or | ||
| 18 | # the debian-policy package | ||
| 19 | |||
| 20 | cachedir=/var/cache/cgit | ||
| 21 | |||
| 22 | case "$1" in | ||
| 23 | configure) | ||
| 24 | if test -d $cachedir; then | ||
| 25 | chown www-data.www-data $cachedir | ||
| 26 | fi | ||
| 27 | ;; | ||
| 28 | |||
| 29 | abort-upgrade|abort-remove|abort-deconfigure) | ||
| 30 | ;; | ||
| 31 | |||
| 32 | *) | ||
| 33 | echo "postinst called with unknown argument \`$1'" >&2 | ||
| 34 | exit 1 | ||
| 35 | ;; | ||
| 36 | esac | ||
| 37 | |||
| 38 | # dh_installdeb will replace this with shell code automatically | ||
| 39 | # generated by other debhelper scripts. | ||
| 40 | |||
| 41 | #DEBHELPER# | ||
| 42 | |||
| 43 | exit 0 | ||
diff --git a/debian/cgit.postrm b/debian/cgit.postrm new file mode 100644 index 0000000..b58613e --- /dev/null +++ b/debian/cgit.postrm  | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # postrm script for cgit | ||
| 3 | # | ||
| 4 | # see: dh_installdeb(1) | ||
| 5 | |||
| 6 | set -e | ||
| 7 | |||
| 8 | # summary of how this script can be called: | ||
| 9 | # * <postrm> `remove' | ||
| 10 | # * <postrm> `purge' | ||
| 11 | # * <old-postrm> `upgrade' <new-version> | ||
| 12 | # * <new-postrm> `failed-upgrade' <old-version> | ||
| 13 | # * <new-postrm> `abort-install' | ||
| 14 | # * <new-postrm> `abort-install' <old-version> | ||
| 15 | # * <new-postrm> `abort-upgrade' <old-version> | ||
| 16 | # * <disappearer's-postrm> `disappear' <overwriter> | ||
| 17 | # <overwriter-version> | ||
| 18 | # for details, see http://www.debian.org/doc/debian-policy/ or | ||
| 19 | # the debian-policy package | ||
| 20 | |||
| 21 | cachedir=/var/cache/cgit | ||
| 22 | |||
| 23 | case "$1" in | ||
| 24 | purge|remove) | ||
| 25 | if test -d $cachedir; then | ||
| 26 | rm -rf $cachedir | ||
| 27 | fi | ||
| 28 | ;; | ||
| 29 | |||
| 30 | upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) | ||
| 31 | ;; | ||
| 32 | |||
| 33 | *) | ||
| 34 | echo "postrm called with unknown argument \`$1'" >&2 | ||
| 35 | exit 1 | ||
| 36 | ;; | ||
| 37 | esac | ||
| 38 | |||
| 39 | # dh_installdeb will replace this with shell code automatically | ||
| 40 | # generated by other debhelper scripts. | ||
| 41 | |||
| 42 | #DEBHELPER# | ||
| 43 | |||
| 44 | exit 0 | ||
