Update the steps for updating the hardcoded seed nodes to point to the new filename on @sipa's server, and add command to decompress it.
Ref: #10163
Tested ACK ac9df130a507177ec77ef3f5f4fa43c0c5ef57c3
7 | @@ -8,7 +8,7 @@ and remove old versions as necessary. 8 | 9 | The seeds compiled into the release are created from sipa's DNS seed data, like this: 10 | 11 | - curl -s http://bitcoin.sipa.be/seeds.txt > seeds_main.txt 12 | + curl -s http://bitcoin.sipa.be/seeds.txt.gz | gunzip > seeds_main.txt
Nit: Isn't | gzip -dc preferred over | gunzip?
For what reason?
@laanwj Good question! :-) Perhaps it is a legacy thing, but for some reason I have it hard wired that gzip -dc is used when operating on stdin/stdout and gunzip is for unpacking file.gz, removing the original file and leaving file. They might be totally equivalent nowadays. If so, ignore my minor nit :-)
Found this thread: https://lists.gnu.org/archive/html/bug-automake/2009-10/msg00012.html
IIRC on some systems, gunzip symlink was not available in the default install.
IIRC on some systems, gunzip symlink was not available in the default install.
I tried on FreeBSD, OpenBSD, Linux (Ubuntu) and gunzip worked out of the box at least... Also these are not general instructions for end-users, but for ourselves. I personally find gunzip much easier to remember. But meh I'm fine with changing it.
Update the steps for updating the hardcoded seed nodes to point to the
new filename on @sipa's server, and add command to decompress it.
Ref: #10163
ACK ac9cd95