~ubuntu-branches/ubuntu/hardy/exim4/hardy-proposed

« back to all changes in this revision

Viewing changes to debian/script

  • Committer: Bazaar Package Importer
  • Author(s): Marc Haber
  • Date: 2005-07-02 06:08:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050702060834-qk17pd52kb9nt3bj
Tags: 4.52-1
* new upstream version 4.51. (mh)
  * adapt 70_remove_exim-users_references
  * remove 37_gnutlsparams
  * adapt 36_pcre
  * adapt 31_eximmanpage
* fix package priorities to have them in sync with override again. (mh)
* Fix error in nb (Norwegian) translation.
  Thanks to Helge Hafting. (mh). Closes: #315775
* Standards-Version: 3.6.2, no changes needed. (mh)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
 
1
#!/bin/bash
2
2
# install as /usr/share/bug/$package/script or /usr/share/bug/$package
3
3
 
 
4
UE4CC="/etc/exim4/update-exim4.conf.conf"
 
5
 
4
6
if test -x /usr/sbin/exim4 ; then
5
7
        /usr/sbin/exim4 -bV >&3
6
8
fi
8
10
if [ "$REPLY" != "yep" ] ;then
9
11
        exit 0
10
12
fi
11
 
if test -r /etc/exim4/update-exim4.conf.conf ; then
12
 
        cat /etc/exim4/update-exim4.conf.conf >&3
 
13
if test -r $UE4CC ; then
 
14
        cat $UE4CC >&3
13
15
fi
14
16
if test -r /etc/mailname ; then
15
17
        echo -n 'mailname:' >&3