Skip to content

Commit

Permalink
Ignore SM site certificate when downloading GeoIP
Browse files Browse the repository at this point in the history
Build servers don't have a root for it, and the address is internal
  • Loading branch information
asherkin committed Jan 19, 2019
1 parent 590f714 commit c501c83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/buildbot/package.pl
Expand Up @@ -77,7 +77,8 @@
if ($needNewGeoIP)
{
print "Downloading GeoIP.dat...\n";
system('wget -q -O ../GeoIP.dat.gz https://sm.alliedmods.net/GeoIP.dat.gz');
# Don't check certificate. It will fail on the slaves and we're resolving to internal addressing anyway
system('wget --no-check-certificate -q -O ../GeoIP.dat.gz https://sm.alliedmods.net/GeoIP.dat.gz');
}
else
{
Expand Down

0 comments on commit c501c83

Please sign in to comment.