Solved portmaster -y -d --packages mysql57-server fails at fetch

Hi, was trying to upgrade msyql57-server with
Code:
portmaster -y -d --packages mysql57-server
It fails when trying to fetch.
Code:
The following actions will be taken if you choose to proceed:
    Install databases/mysql57-server
    Install databases/mysql57-client
    Install ftp/curl
    Upgrade ca_root_nss-3.47.1 to ca_root_nss-3.48
    Downgrade perl5-5.30.1 to perl5-5.28.2

===>>> Proceed? y/n [y] y
.
.
=> nss-3.48.tar.gz doesn't seem to exist in /usr/ports/distfiles//.
=> Attempting to fetch https://download.cdn.mozilla.net/pub/security/nss/releases/NSS_3_48_RTM/src/nss-3.48.tar.gz
env: axel: No such file or directory
=> Attempting to fetch https://archive.mozilla.org/pub/security/nss/releases/NSS_3_48_RTM/src/nss-3.48.tar.gz
env: axel: No such file or directory
=> Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/nss-3.48.tar.gz
env: axel: No such file or directory
=> Couldn't fetch it - please try to retrieve this
=> port manually into /usr/ports/distfiles// and try again.
*** Error code 1

Stop.
make[1]: stopped in /usr/ports/security/ca_root_nss
*** Error code 1

Try to fetch manually:
# fetch http://distcache.FreeBSD.org/ports-distfiles/nss-3.48.tar.gz
fetch: http://distcache.FreeBSD.org/ports-distfiles/nss-3.48.tar.gz: Not Found

The only way right now to install/upgrade is without --packages for mysql57-server.

Thanks.
 
Subsequent to the above post. On one FreeBSD server, it seems to have a problem when it comes to fetch. When fetch is run from portmaster, it fails. Manually running the fetch, it's fine.

=> nss-3.48.tar.gz doesn't seem to exist in /usr/ports/distfiles//.
=> Attempting to fetch https://download.cdn.mozilla.net/pub/security/nss/releases/NSS_3_48_RTM/src/nss-3.48.tar.gz
env: axel: No such file or directory

Code:
fetch https://download.cdn.mozilla.net/pub/security/nss/releases/NSS_3_48_RTM/src/nss-3.48.tar.gz -o /usr/ports/distfiles/
/usr/ports/distfiles//nss-3.48.tar.gz                   72 MB    9 MBps    07s

Then portmaster command can be restarted but will fail next time it uses fetch.
 
Seems the answer is in the first error, namely:
Code:
env: axel: No such file or directory

# cd /usr/ports/ftp/axel; make && make install && make clean
Problem solved.
 
Back
Top