fixing bug when installing (bad upgrade check)

This commit is contained in:
Benjamin Sonntag 2014-07-04 12:37:37 +02:00
parent 9c2090ff8b
commit c298cd4aaf
4 changed files with 13 additions and 6 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
alternc (3.1.2) oldstable; urgency=low
* fix a bug when installing (doing patches from 3.1~rc)
-- Benjamin Sonntag <benjamin@sonntag.fr> Fri, 4 Jul 2014 12:44:12 +0100
alternc (3.1.1) oldstable; urgency=low alternc (3.1.1) oldstable; urgency=low
* many bugfixed from 3.1 / 3.2 : * many bugfixed from 3.1 / 3.2 :

View File

@ -747,4 +747,5 @@ CREATE TABLE IF NOT EXISTS `alternc_status` (
KEY `name` (`name`) KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1; ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO alternc_status SET name='alternc_version',value='3.1.0~b.php'; INSERT INTO alternc_status SET name='alternc_version',value='3.1.0~c.sh';

View File

@ -12,7 +12,7 @@ if [ ! -r "$CONFIG_FILE" ]; then
fi fi
if [ `id -u` -ne 0 ]; then if [ `id -u` -ne 0 ]; then
echo "3.0.3~b.sh must be launched as root" echo "$0 must be launched as root"
exit 1 exit 1
fi fi
@ -28,5 +28,5 @@ test -d /var/alternc/bind/zones/ || exit 0
cp --no-clobber /var/alternc/bind/zones/* /var/lib/alternc/bind/zones/ cp --no-clobber /var/alternc/bind/zones/* /var/lib/alternc/bind/zones/
# No need to regenerate zone, we are launched by upgrade_check, # No need to regenerate zone, we are launched by upgrade_check,
# launched by alternc.install, and alternc.install regenerate everything # launched by alternc.install, and alternc.install regenerate everything
# when it end # when it end

View File

@ -1,13 +1,13 @@
--- changelog 2014-06-24 13:42:50.234304438 +0200 --- changelog 2014-06-24 13:42:50.234304438 +0200
+++ changelog.wheezy 2014-06-24 13:43:51.978313552 +0200 +++ changelog.wheezy 2014-06-24 13:43:51.978313552 +0200
@@ -1,3 +1,10 @@ @@ -1,3 +1,10 @@
+alternc (3.2.1) stable; urgency=low +alternc (3.2.2) stable; urgency=low
+ +
+ * Version identical to 3.1 for Squeeze + * Version identical to 3.1 for Squeeze
+ * Includes a small dovecot patch / dependency for dovecot 2.0 for Wheezy + * Includes a small dovecot patch / dependency for dovecot 2.0 for Wheezy
+ +
+ -- Benjamin Sonntag <benjamin@sonntag.fr> Thu, 28 Mar 2014 18:19:00 +0200 + -- Benjamin Sonntag <benjamin@sonntag.fr> Thu, 28 Mar 2014 18:19:00 +0200
+ +
alternc (3.1.1) oldstable; urgency=low alternc (3.1.2) oldstable; urgency=low
* many bugfixed from 3.1 / 3.2 : * fix a bug when installing (doing patches from 3.1~rc)