Configure poudriere: Difference between revisions
Jump to navigation
Jump to search
imported>Jacob mNo edit summary |
imported>Jacob mNo edit summary |
||
| Line 14: | Line 14: | ||
BASEFS=/usr/local/poudriere <== This is the default | BASEFS=/usr/local/poudriere <== This is the default | ||
... | ... | ||
Create | Create directories.<br> | ||
># mkdir /usr/local/poudriere | ># mkdir /usr/local/poudriere | ||
># mkdir /usr/ports/distfiles | ># mkdir /usr/ports/distfiles | ||
Create a zfs pool if needed.<br> | Create a zfs pool if needed.<br> | ||
># zpool create zpoud /dev/ada1 | ># zpool create zpoud /dev/ada1 | ||
Create dataset<br> | |||
># zfs create -o mountpoint=/usr/local/poudriere zpoud/usr_local_poudriere | ># zfs create -o mountpoint=/usr/local/poudriere zpoud/usr_local_poudriere | ||
Create the poudriere jail | Create the poudriere jail | ||
Revision as of 13:39, 11 January 2020
Previous Install Poudriere Next Create SSL Certificate and Key
Edit poudriere.conf
># vim /usr/local/etc/poudriere.conf ... ZPOOL=zpoud ... BASEFS=/usr/local/poudriere <== This is the default ...
Create directories.
># mkdir /usr/local/poudriere ># mkdir /usr/ports/distfiles
Create a zfs pool if needed.
># zpool create zpoud /dev/ada1
Create dataset
># zfs create -o mountpoint=/usr/local/poudriere zpoud/usr_local_poudriere
Create the poudriere jail
># poudriere jail -c -j 12amd64 -v 12.0-RELEASE
Create the ports tree
># poudriere ports -c -p sjapkg
Previous Install Poudriere Next Create SSL Certificate and Key