From: Alfredo Deza Date: Fri, 25 Apr 2014 18:22:07 +0000 (-0400) Subject: change the HARDCODED values for the deb package X-Git-Tag: v1.5.0~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e9d106ebaf9215a5053769f89f740956357f0d9a;p=ceph-deploy.git change the HARDCODED values for the deb package Signed-off-by: Alfredo Deza --- diff --git a/scripts/build-debian.sh b/scripts/build-debian.sh index ce205ca..5b59670 100755 --- a/scripts/build-debian.sh +++ b/scripts/build-debian.sh @@ -33,10 +33,13 @@ rm -f ../ceph-deploy*.dsc ../ceph-deploy*.changes ../ceph-deploy*.deb ../ceph-de rm -rf ./debian-repo # Apply backport tag if release build +# I am going to jump out the window if this is not fixed and removed from the source +# of this package. There is absolutely **NO** reason why we need to hard code the +# DEBEMAIL like this. if [ $RELEASE -eq 1 ] ; then DEB_VERSION=$(dpkg-parsechangelog | sed -rne 's,^Version: (.*),\1, p') BP_VERSION=${DEB_VERSION}${BPTAG} - DEBEMAIL="gary.lowell@inktank.com" dch -D $DIST --force-distribution -b -v "$BP_VERSION" "$comment" + DEBEMAIL="alfredo.deza@inktank.com" dch -D $DIST --force-distribution -b -v "$BP_VERSION" "$comment" dpkg-source -b . fi