aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar YAEGASHI Takeshi <yaegashi@debian.org>2014-02-16 18:19:31 (JST)
committerGravatar YAEGASHI Takeshi <yaegashi@debian.org>2014-02-17 07:42:13 (JST)
commit117301515ca5aaa77e20b8d855543228a3fcf7df (patch)
treec28d48918b8031f237c3979386831f71894abc91
parent74338eca40104987546da77ad38e8bb96e4bcd18 (diff)
downloadcgit-117301515ca5aaa77e20b8d855543228a3fcf7df.zip
cgit-117301515ca5aaa77e20b8d855543228a3fcf7df.tar.gz
Add postinst/postrm scripts
-rw-r--r--debian/cgit.postinst43
-rw-r--r--debian/cgit.postrm44
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
6set -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
20cachedir=/var/cache/cgit
21
22case "$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 ;;
36esac
37
38# dh_installdeb will replace this with shell code automatically
39# generated by other debhelper scripts.
40
41#DEBHELPER#
42
43exit 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
6set -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
21cachedir=/var/cache/cgit
22
23case "$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 ;;
37esac
38
39# dh_installdeb will replace this with shell code automatically
40# generated by other debhelper scripts.
41
42#DEBHELPER#
43
44exit 0