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 <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
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
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"