~ubuntu-branches/ubuntu/karmic/mod-mono/karmic

« back to all changes in this revision

Viewing changes to debian/libapache-mod-mono.config

  • Committer: Bazaar Package Importer
  • Author(s): Dylan R. E. Moonfire
  • Date: 2007-06-21 19:13:27 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070621191327-5vhqh4p3tofymbtg
Tags: 1.2.4-1
* New upstream release
* Dylan R. E. Moonfire
  + Added Dutch translation (Closes: #423053)
  + Added Spanish translation (Closes: #415181)
  + debian/control
    - Apache 1.3 has been removed from Debian, so removed references to
      apache and also the libapache-mod-mono package. (Closes: #429087)
  + Realized libapache2-mod-mono templates were not included, added them
    to the translation files. Between this and the above entry, this
    effectively erases all translations.
* Mirco 'meebey' Bauer
  + debian/libapache2-mod-mono.template:
    - Fixed wording
  + debian/watch:
    - Updated
  + debian/copyright:
    - Added copyright holders

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash -e
2
 
 
3
 
. /usr/share/debconf/confmodule
4
 
db_version 2.0
5
 
db_capb backup
6
 
db_title Mod Mono
7
 
 
8
 
apachecfg="/etc/apache"
9
 
 
10
 
STATE=1
11
 
while [ "$STATE"  != 0 -a "$STATE" != 2 ]; do
12
 
    case "$STATE" in
13
 
        1)
14
 
            db_input medium libapache-mod-mono/activate || true
15
 
            if db_go; then
16
 
                db_get libapache-mod-mono/activate || true
17
 
                STATE=2
18
 
            else
19
 
                STATE=0
20
 
            fi
21
 
            ;;
22
 
    esac
23
 
done
24
 
 
25
 
if [ "$STATE" = 0 ]; then
26
 
    exit 1
27
 
fi