~libravatar/libravatar/master

« back to all changes in this revision

Viewing changes to debian/libravatar-cdn-common.prerm

  • Committer: Francois Marier
  • Date: 2011-05-26 11:43:11 UTC
  • Revision ID: git-v1:1745d3c2d975c30525651559d1f0e20e38878fc7
Move js and css to -www and split images between -www and -cdn-common

Javascript and CSS files should be tied to the web application version
and not depend on mirrors to be up to date.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# prerm script for libravatar-cdn-common
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <prerm> `remove'
 
10
#        * <old-prerm> `upgrade' <new-version>
 
11
#        * <new-prerm> `failed-upgrade' <old-version>
 
12
#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
 
13
#        * <deconfigured's-prerm> `deconfigure' `in-favour'
 
14
#          <package-being-installed> <version> `removing'
 
15
#          <conflicting-package> <version>
 
16
# for details, see http://www.debian.org/doc/debian-policy/ or
 
17
# the debian-policy package
 
18
 
 
19
 
 
20
case "$1" in
 
21
    remove|deconfigure)
 
22
        rm -f /etc/libravatar/cdn-common.include
 
23
    ;;
 
24
 
 
25
    upgrade)
 
26
    ;;
 
27
 
 
28
    failed-upgrade)
 
29
    ;;
 
30
 
 
31
    *)
 
32
        echo "prerm called with unknown argument \`$1'" >&2
 
33
        exit 1
 
34
    ;;
 
35
esac
 
36
 
 
37
# dh_installdeb will replace this with shell code automatically
 
38
# generated by other debhelper scripts.
 
39
 
 
40
#DEBHELPER#
 
41
 
 
42
exit 0