From: Ian Campbell Date: Fri, 26 Jun 2015 10:31:31 +0000 (+0100) Subject: mg-debian-installer-update: Update "current" symlink, if appropriate X-Git-Tag: wip.libvirt-v3-base~100 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=814a84a4be710cb2502e6e5b2f4b0c38370daef2;p=people%2Fliuw%2Fosstest.git mg-debian-installer-update: Update "current" symlink, if appropriate Where "appropriate" means if TftpDiVersion is set to current, which is the default in standalone mode. The assumption is that someone wuth that configration runs mg-debian-installer-update then they would expected the update to be immediately effective. There was some existing, but commented, code to do this update, reinstate it with the correct condition and adjusting for the addition of -$suite to the patch many moons ago. There is no impact on any production configuration, since they always set TftpDiVersion. Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- diff --git a/mg-debian-installer-update b/mg-debian-installer-update index 1595ae5..77d806d 100755 --- a/mg-debian-installer-update +++ b/mg-debian-installer-update @@ -67,6 +67,7 @@ esac pfile=$sbase/non-free/binary-$arch/Packages.gz +tftpdiversion=`getconfig TftpDiVersion` dstroot=`getconfig TftpPath`/`getconfig TftpDiBase`/ date=`date +%Y-%m-%d` dst=$arch/$date-$suite @@ -192,10 +193,12 @@ done rm Packages.gz -#cd $dstroot/$arch -#rm -rf current.new -#ln -s $date current.new -#mv -Tf current.new current +if [ x$tftpdiversion = xcurrent ]; then + cd $dstroot/$arch + rm -rf current-$suite.new + ln -s $date-$suite current-$suite.new + mv -Tf current-$suite.new current-$suite +fi echo "TftpDiVersion $date" echo >&2 "downloaded $dstroot/$dst"