~ubuntu-branches/ubuntu/quantal/dput/quantal

« back to all changes in this revision

Viewing changes to debian/config

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-11-28 15:31:32 UTC
  • mfrom: (1.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20061128153132-0y6a3ih8jbx3fo50
Tags: 0.9.2.26ubuntu1
* Merge from debian unstable. Remaining changes:
  - ubuntu configuration

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
 
# We'll only want to see an upgrade notice
7
 
# if we're upgrading from an old version.
8
 
if [ "$1" = "configure" -a "$2" != "" ]; then
9
 
        if dpkg --compare-versions "$2" lt 0.8; then
10
 
                db_input medium dput/config-file-format || true
11
 
                db_go
12
 
        fi
13
 
fi