Install poudriere: Difference between revisions
Jump to navigation
Jump to search
imported>Jacob No edit summary |
imported>Jacob No edit summary |
||
| (12 intermediate revisions by the same user not shown) | |||
| Line 4: | Line 4: | ||
Next [[Configure poudriere]] | Next [[Configure poudriere]] | ||
</span></p> | </span></p> | ||
<hr><p style="text align:left;"> | |||
Update the host. | Update the host. | ||
# freebsd-update fetch install | # freebsd-update fetch install | ||
Install Poudriere. | Install Poudriere. | ||
# pkg install poudriere nginx | # pkg install poudriere nginx php72 | ||
enable jail services in rc.conf | New packages to be INSTALLED: | ||
poudriere: 3.3.3 | |||
nginx: 1.16.1_8,2 | |||
ca_root_nss: 3.49 | |||
dialog4ports: 0.1.6 | |||
freebsd-release-manifests: 20191104 | |||
pcre: 8.43_2 | |||
php72: 7.2.26 | |||
libxml2: 2.9.10 | |||
libargon2: 20190702 | |||
enable jail nginx and php-fpm services in rc.conf | |||
# vim /etc/rc.conf | # vim /etc/rc.conf | ||
hostname=" | hostname="poudriere.example.com" | ||
ifconfig_re0="DHCP" | |||
ifconfig_re0_ipv6="inet6 accept_rtadv" | |||
sshd_enable="YES" | sshd_enable="YES" | ||
ntpdate_enable="YES" | ntpdate_enable="YES" | ||
| Line 26: | Line 34: | ||
zfs_enable="YES" | zfs_enable="YES" | ||
jail_enable="YES" | jail_enable="YES" | ||
nginx_enable="YES" | |||
php_fpm_enable="YES" | |||
<hr><p style="text align:left;"> | <hr><p style="text align:left;"> | ||
| Line 49: | Line 42: | ||
Next [[Configure poudriere]] | Next [[Configure poudriere]] | ||
</span></p> | </span></p> | ||
<center> Up [[Poudriere setup]]</center> | |||
<hr> | |||
Latest revision as of 21:18, 16 February 2020
Previous Poudriere setup Next Configure poudriere
Update the host.
# freebsd-update fetch install
Install Poudriere.
# pkg install poudriere nginx php72
New packages to be INSTALLED:
poudriere: 3.3.3
nginx: 1.16.1_8,2
ca_root_nss: 3.49
dialog4ports: 0.1.6
freebsd-release-manifests: 20191104
pcre: 8.43_2
php72: 7.2.26
libxml2: 2.9.10
libargon2: 20190702
enable jail nginx and php-fpm services in rc.conf
# vim /etc/rc.conf hostname="poudriere.example.com" ifconfig_re0="DHCP" ifconfig_re0_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" nginx_enable="YES" php_fpm_enable="YES"
Previous Poudriere setup Next Configure poudriere