~ubuntu-branches/ubuntu/hardy/libapache2-mod-python/hardy

« back to all changes in this revision

Viewing changes to debian/libapache2-mod-python2.4.config

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski, Piotr Ozarowski
  • Date: 2006-10-12 17:14:47 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20061012171447-ji7e0w38nl37kknp
Tags: 3.2.10-2
[ Piotr Ozarowski ]
* Dependencies updated:
  + replaced apache2-common with apache2.2-common (closes: #391790)
  + bumped apache2-threaded-dev version (see above),
  + bumped python-central version (dh_python removed from debian/rules),
  + bumped debhelper version (see above),
  + added po-debconf to Build-Depends (lintian error).
* Removed deprecated dh_installmanpages from debian/rules
  (there are no manpages to install).
* Updated Dutch debconf translation from Vincent Zweije. (closes: #388834)
* Updated Czech debconf translation from Miroslav Kure. (closes: #384752)
* Updated Japanese debconf translation from Hideki Yamane. (closes: #391811)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
# Source debconf library
4
 
. /usr/share/debconf/confmodule
5
 
 
6
 
if [ -e /etc/apache2/mods-enabled/mod_python.load ]; then
7
 
    db_set libapache2-mod-python/enable_module true
8
 
else
9
 
    # We want to enable the module by default during initial configuration
10
 
    if [ "$1" = "configure" ] ; then
11
 
        db_set libapache2-mod-python/enable_module true
12
 
    else
13
 
        db_set libapache2-mod-python/enable_module false
14
 
    fi
15
 
fi
16
 
 
17
 
# Enable the Apache 2 module?
18
 
db_input medium libapache2-mod-python/enable_module || true
19
 
db_go