I touched some Poudriere files and I can't update jail

Hi guys,

Not sure what I touched, but when I run this command I get an error:

Code:
freezr ) doas poudriere ports -u -p latest
[00:00:00] Updating portstree "latest" with git+https...fatal: unable to access 'https://git.FreeBSD.org/ports.git/': Could not resolve host: git.FreeBSD.org
[00:00:22] Error:  fail

freezr ) ping -c1 git.FreeBSD.org
[DOES NOT CONNECT]                                                                                 

freezr ) cat /etc/resolv.conf
# Generated by resolvconf
nameserver 75.75.75.75
nameserver 75.75.76.76

#nameserver 127.0.0.1
#options edns0

freezr ) cat /usr/local/etc/poudriere.conf
ZPOOL=zroot
FREEBSD_HOST=https://download.freebsd.org
RESOLV_CONF=/etc/resolv.conf
BASEFS=/usr/local/poudriere
DISTFILES_CACHE=/usr/ports/distfiles
USE_PORTLINT=yes
export SOCKS5_PROXY=localhost:12000
# TUNING
PARALLEL_JOBS=4
ALLOW_MAKE_JOBS=yes
MAX_EXECUTION_TIME=86400
USE_TMPFS=all
TMPFS_LIMIT=10
CCACHE_DIR=/var/cache/ccache
CCACHE_ENABLE=yes

Thanks... 🙏
 
I switched to cloudfare DNS still can't ping, also resolvconf -u seems ineffective.
What else I touched that I should not?
 
I switched to cloudfare DNS still can't ping
Don't use ping to test name resolving. Wrong tool for the job, use drill(1) or host(1). drill(1) is useful because you can point it to a specific DNS server.

Use ping(1) to test if you're actually connected to the internet, without plain TCP/IP working DNS isn't going to work either.

ping 8.8.8.8 <- should work, if you have a working internet connection.
drill git.freebsd.org <- this tests name resolving, but it's going to be useless if the previous ping command fails.
drill @8.8.8.8 git.freebsd.org <- test the name resolving using the 8.8.8.8 DNS service specifically
drill @75.75.75.75 git.freebsd.org <- same test but using the 75.75.75.75 DNS service.
 
I thinks I messed up with this:

Code:
FreeBSD-local-unbound-15.1:
On upgrade:
After upgrading local-unbound, the configuration file should be regenerated
by running "service local_unbound setup" before restarting the service.

Anyway I used the cloudfare dns and restored the backup but still doesn't work... 🤷‍♂️
 
Thank you...

I temporily resolve by using cloudfare dns

Code:
nameserver 1.1.1.1
nameserver 1.0.0.1

And running resolvconf -u.

So it wasn't poudriere... 🤦‍♂️
 
Back
Top