Install poudriere: Difference between revisions

From wiki
Jump to navigation Jump to search
imported>Jacob
No edit summary
imported>Jacob
No edit summary
Line 32: Line 32:
Return [[Freebsd Knowledge Base]]
Return [[Freebsd Knowledge Base]]
</span></p><hr>
</span></p><hr>
Welcome to the Poudriere setup
==== Poudriere setup ====
* [[install poudriere]]
* [[Configure poudriere]]
* [[Create SSL Certificate and Key]]
* [[Create first poudriere set]]
* [[Setup poudriere clients]]
* [[Create package list for poudriere]]
* [[Update poudriere repository]]
<hr><p style="text align:left;">
Previous [[Poudriere setup]]
<span style="float:right;">
Next [[Configure poudriere]]
</span></p>

Revision as of 19:02, 28 November 2019


Previous Poudriere setup Next Configure poudriere

Welcome to the Poudriere setup

install poudriere

Update the host.

# freebsd-update fetch install

Install Poudriere.

# pkg install poudriere nginx

enable jail services in rc.conf

# vim /etc/rc.conf
 hostname="jacup.sjakio.com"
 ifconfig_bge0="DHCP"
 ifconfig_bge0_ipv6="inet6 accept_rtadv"
 sshd_enable="YES"
 ntpdate_enable="YES"
 ntpd_enable="YES"
 powerd_enable="YES"
 # Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
 dumpdev="AUTO"
 zfs_enable="YES"
 jail_enable="YES"

Previous NetAtalk setup Return Freebsd Knowledge Base