summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-10-12 10:07:22 +0000
committerPeter Palfrader <peter@palfrader.org>2002-10-12 10:07:22 +0000
commit902397adbd051870ed08feba44cd675165cbcac6 (patch)
treec9a527ec435ce32237fceecd2cdde081896fe3ec /debian
parentbf9af3446896d1f1d8bd0c5afd2317d29f87b17d (diff)
Fix config script to not screw up domainname on upgrades.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/echolot.config2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 964d0c3..cccbc2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+echolot (2.0.3-2) unstable; urgency=low
+
+ * Fix config script to not screw up domainname on upgrades.
+
+ -- Peter Palfrader <weasel@debian.org> Sat, 12 Oct 2002 12:05:28 +0200
+
echolot (2.0.3-1) unstable; urgency=low
* Changed Section from contrib/mail to (main/)mail as mimxaster is
diff --git a/debian/echolot.config b/debian/echolot.config
index e2d8938..bae4931 100755
--- a/debian/echolot.config
+++ b/debian/echolot.config
@@ -23,7 +23,7 @@ if ( -e '/etc/echolot/pingd.conf' ) {
die("Evaling config code from /etc/echolot/pingd.conf returned error: $EVAL_ERROR");
}
- $sitename = $CONFIG->{'my_localpart'}.'@'.$CONFIG->{'my_domain'} if (defined $CONFIG->{'my_localpart'} && defined $CONFIG->{'my_domain'});
+ $address = $CONFIG->{'my_localpart'}.'@'.$CONFIG->{'my_domain'} if (defined $CONFIG->{'my_localpart'} && defined $CONFIG->{'my_domain'});
$operator = $CONFIG->{'operator_address'} if (defined $CONFIG->{'operator_address'});
$sitename = $CONFIG->{'sitename'} if (defined $CONFIG->{'sitename'});
};