Creating a Poudriere Jail fails

Hi,

I am trying to create a poudriere jail to compile some custom packages, I get a fail with:

Code:
poudriere jail -c -j freebsd_14-1x64 -v 14.1-RELEASE
[00:00:00] Creating freebsd_14-1x64 fs at /usr/local/poudriere/jails/freebsd_14-1x64... done
[00:00:01] Using pre-distributed MANIFEST for FreeBSD 14.1-RELEASE amd64
[00:00:01] Fetching base for FreeBSD 14.1-RELEASE amd64
fetch: https://download/FreeBSD.org/pub/FreeBSD/releases/amd64/amd64/14.1-RELEASE/base.txz: Address family for host not supported
fetch: https://download/FreeBSD.org/pub/FreeBSD/releases/amd64/amd64/14.1-RELEASE/base.txz: Address family for host not supported
[00:00:01] Error: Failed to fetch from https://download/FreeBSD.org/pub/FreeBSD/releases/amd64/amd64/14.1-RELEASE/base.txz
[00:00:01] Error while creating jail, cleaning up.
[00:00:01] Removing freebsd_14-1x64 jail... done
[00:00:02] Cleaning freebsd_14-1x64 data... done

It seems to look for the RELEASE in the wrong place ... how do I fix?

I am trying to install a linux version of widevine, as per these instructions Here
The instructions define the locations as : FREEBSD_HOST=https://download.freebsd.org, is this correct now? I don't see a /pub/.. at that location ..
 
Hi,

I am trying to create a poudriere jail to compile some custom packages, I get a fail with:



It seems to look for the RELEASE in the wrong place ... how do I fix?

I am trying to install a linux version of widevine, as per these instructions Here
The instructions define the locations as : FREEBSD_HOST=https://download.freebsd.org, is this correct now? I don't see a /pub/.. at that location ..
Your URL is https://download/FreeBSD.org/pub/FreeBSD/releases/amd64/amd64/14.1-RELEASE/base.txz

There is a / after 'download', you should have '.' there. It should be https://download.freebsd.org/pub/FreeBSD/releases/amd64/amd64/14.1-RELEASE/base.txz

I have this "FREEBSD_HOST=https://download.freebsd.org" in my poudriere.conf.

Fix your poudriere.conf (located in /usr/local/etc/poudriere.conf) with the line I provided, then try again.
 
Thanks, yep I had the correct URL. But changing to ftp fixed it .. thanks

FREEBSD_HOST=ftp://ftp.freebsd.org
 
Back
Top