From e16c75f140dfb58ee5794c32ee7772a252da4dfc Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Fri, 6 Oct 2017 23:54:12 +0200 Subject: [PATCH] =?UTF-8?q?[enh]=C2=A0adding=20changelog=20information?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 3 ++- svnup.sh | 18 ------------------ 2 files changed, 2 insertions(+), 19 deletions(-) delete mode 100755 svnup.sh diff --git a/debian/changelog b/debian/changelog index 4724e568..059edd4d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,8 +14,9 @@ alternc (3.1.11) oldoldstable; urgency=low * fix opendkim signing for mails submitted over the network * fix a LOT of bugs from Github: #128 #69 #116 #123 #126 #134 #139 #156 #173 #138 * fix more BUGS from Github: #178 #159 #155 #176 #161 #162 #164 #165 #166 #170 #175 #177 + * enhanced message class, managed both logs to /var/log/alternc and LEVELS of messages - -- Benjamin Sonntag Wed, 7 Jun 2017 10:36:00 +0300 + -- Benjamin Sonntag Wed, 7 Oct 2017 23:36:00 +0200 alternc (3.1.10) oldoldstable; urgency=low diff --git a/svnup.sh b/svnup.sh deleted file mode 100755 index 874b333a..00000000 --- a/svnup.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# If you have all the AlternC's repositories in one folder, -# like alternc/trunk/ alternc-mailman/trunk/ ... -# this script do svn update on all of them ;) - -pushd ../.. - -for i in alternc alternc-bounces alternc-jabber alternc-munin alternc-procmail alternc-stats alternc-apps alternc-changepass alternc-mailman alternc-philesight alternc-secondarymx alternc-sympa alternc-awstats alternc-doc alternc-mergelog alternc-phpcron alternc-slavedns alternc-webalizer -do - if [ -d "$i" ]; then - pushd $i - svn up - popd - fi -done - -popd