diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-26 20:18:49 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-26 20:18:49 +0200 |
commit | 16abac5e91651c43a99b88f39e4f5b9e1e0e58c6 (patch) | |
tree | 3537c50a9677ab34a0ae5c9b218aa82d24bd41ec /bin | |
parent | 3a9c01363a0af7c64179c19f1d6e884c4a7cb873 (diff) | |
download | jenkins.debian.net-16abac5e91651c43a99b88f39e4f5b9e1e0e58c6.tar.xz |
webcheck: update list of jessie release architectures
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/webcheck_url.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/webcheck_url.sh b/bin/webcheck_url.sh index 582d4aa6..b4b523e7 100755 --- a/bin/webcheck_url.sh +++ b/bin/webcheck_url.sh @@ -57,10 +57,11 @@ if [ "${URL:0:21}" = "http://www.debian.org" ] && [ "${URL: -1}" != "/" ] ; then SARGE=$WOODY ETCH="$SARGE amd64" LENNY="$ETCH armel" - SQUEEZE="amd64 i386 armel sparc powerpc ia64 mips mipsel s390 kfreebsd-amd64 kfreebsd-i386" # yes there is mips + SQUEEZE="amd64 i386 armel sparc powerpc ia64 mips mipsel s390 kfreebsd-amd64 kfreebsd-i386" STABLE=$SQUEEZE WHEEZY="$SQUEEZE armhf s390x" - #JESSIE=$WHEEZY # also needs to be added to RELEASES above + JESSIE="amd64 armel armhf i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390x" + # jessie eventually needs to be added to RELEASES above for RELEASE in $RELEASES ; do RELEASEVAR=$(echo $RELEASE | tr "[:lower:]" "[:upper:]") for ARCH in ${!RELEASEVAR} ; do @@ -70,8 +71,8 @@ if [ "${URL:0:21}" = "http://www.debian.org" ] && [ "${URL: -1}" != "/" ] ; then # # Remind, that this needs to be updated manually # - if [ $(date +%Y) -gt 2013 ] ; then - echo "next Warning: It's not 2013 anymore, check which architectures Jessie has for real." + if [ $(date +%Y) -gt 2014 ] ; then + echo "next Warning: It's not 2014 anymore, check which architectures Jessie has for real." fi fi |