]> git.decadent.org.uk Git - dak.git/blobdiff - scripts/debian/update-bugdoctxt
Use more https://
[dak.git] / scripts / debian / update-bugdoctxt
index 6c4ece0cf24c151d5f38ec4380350114cdfd4337..d5e6416ae8a2e2f6f4e82ade409ed81eefa125ac 100755 (executable)
@@ -8,14 +8,14 @@ export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
 export TERM=linux
 
 destdir=$ftpdir/doc
-urlbase=http://www.debian.org/Bugs/
+urlbase=https://www.debian.org/Bugs/
 
 cd $destdir
 
 convert () {
        src=$1; dst=$2
        rm -f .new-$dst
-       echo Generating $dst from http://www.debian.org/Bugs/$src ...
+       echo Generating $dst from https://www.debian.org/Bugs/$src ...
        lynx -nolist -dump $urlbase$src | sed -e 's/^ *$//' | perl -00 -ne 'exit if /Back to the Debian Project homepage/; print unless ($.==1 || $.==2 || $.==3 || /^\s*Other BTS pages:$/m)' >.new-$dst
        if cmp -s .new-$dst $dst ; then rm -f .new-$dst
        else mv -f .new-$dst $dst