Templates

make.conf.j2

Synopsis: Template make.conf.

Description of the template.

[templates/make.conf.j2]

1# {{ ansible_managed }}
2{% for item in poudriere_make_conf %}
3{{ item }}
4{% endfor %}

poudriere.conf.j2

Synopsis: Template poudriere.conf.

Description of the template.

[templates/poudriere.conf.j2]

 1# {{ ansible_managed }} 
 2
 3ZPOOL={{ poudriere_conf_zpool }}
 4NO_ZFS={{ poudriere_conf_no_zfs }}
 5ZROOTFS={{ poudriere_conf_zrootfs }}
 6FREEBSD_HOST={{ poudriere_conf_freebsd_host }}
 7RESOLV_CONF={{ poudriere_conf_resolv_conf }}
 8BASEFS={{ poudriere_conf_basefs }}
 9POUDRIERE_DATA={{ poudriere_conf_poudriere_data }}
10USE_PORTLINT={{ poudriere_conf_use_portlint }}
11USE_TMPFS={{ poudriere_conf_use_tmpfs }}
12DISTFILES_CACHE={{ poudriere_conf_distfiles_cache }}
13PKG_REPO_SIGNING_KEY={{ poudriere_conf_pkg_repo_signing_key }}
14URL_BASE={{ poudriere_conf_url_base }}
15CHECK_CHANGED_OPTIONS={{ poudriere_conf_check_changed_options }}
16CHECK_CHANGED_DEPS={{ poudriere_conf_check_changed_deps }}
17
18# EOF

poudriere.conf2.j2

Synopsis: Template poudriere.conf2.

Description of the template.

[templates/poudriere.conf2.j2]

1# {{ ansible_managed }} 
2
3{% for k,v in poudriere_conf_data.items() %}
4{{ k }}={{ v }}
5{% endfor %}
6
7# EOF

poudriere.pkglist.j2

Synopsis: Template poudriere.pkglist.

Description of the template.

[templates/poudriere.pkglist.j2]

1{% for package in item.packages %}
2{{ package }}
3{% endfor %}