Install poudriere: Difference between revisions

From wiki
Jump to navigation Jump to search
imported>Jacob
No edit summary
imported>Jacob
No edit summary
Line 3: Line 3:
Install Poudriere.
Install Poudriere.
  # pkg install poudriere nginx
  # pkg install poudriere nginx
enable services in rc.conf
enable jail services in rc.conf
  # vim /etc/rc.conf
  # vim /etc/rc.conf
hostname="poudriere.sjakio.com"
  hostname="jacup.sjakio.com"
ifconfig_em0="DHCP"
  ifconfig_bge0="DHCP"
ifconfig_em0_ipv6="inet6 accept_rtadv"
  ifconfig_bge0_ipv6="inet6 accept_rtadv"
sshd_enable="YES"
  sshd_enable="YES"
ntpdate_enable="YES"
  ntpdate_enable="YES"
ntpd_enable="YES"
  ntpd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
  powerd_enable="YES"
dumpdev="AUTO"
  # Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
zfs_enable="YES"
  dumpdev="AUTO"
jail_enable="YES"
  zfs_enable="YES"
  jail_enable="YES"

Revision as of 18:51, 28 November 2019

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"