{% extends "coprs/detail.html" %} {% from "_helpers.html" import render_field, copr_url, copr_name, render_bootstrap_options %} {% block title %}Editing {{ copr_name(copr) }}/{{ chroot.name }}{% endblock %} {%block project_breadcrumb%}
  • Edit
  • {{ chroot.name }}
  • {%endblock%} {% block detail_body %}

    Edit chroot '{{ chroot.name }}'

    {{ form.csrf_token }} {{ render_field( form.buildroot_pkgs, size=80, info='You can add additional packages to the minimal buildroot of this chroot. These packages will be always present before the build starts. ', placeholder='Space separated list of packages. E.g.: scl-utils-build ruby193-build' ) }} {{ render_field(form.repos, rows=5, cols=50, placeholder='Optional - URL to additional yum repos, which can be used during build. Space separated. This should be baseurl from .repo file. E.g.: http://copr-be.cloud.fedoraproject.org/results/rhughes/f20-gnome-3-12/fedora-$releasever-$basearch/') }} {{ render_field( form.module_toggle, size=80, info='You can specify modules which will be enabled or disabled for builds in the given chroot.', placeholder='Comma separated list of modules, e.g. module:stream, !module1:stream1' ) }} {{ render_field( form.with_opts, size=80, info='You can specify rpmbuild --with options here for builds in the given chroot.', placeholder='Space separated list of the rpmbuild with options' ) }} {{ render_field( form.without_opts, size=80, info='You can specify rpmbuild --without options here for builds in the given chroot.', placeholder='Space separated list of the rpmbuild without options' ) }} {{ render_bootstrap_options(form) }} {{ render_field(form.isolation, placeholder='unchanged') }}
    {{ form.comps }} {% if chroot.comps_name %} Stored comps file: {{ chroot.comps_name}}
    {% endif %}
  • If you would like to provide grouping meta information, upload your comps.xml here. Please read the documentation to learn more.
  • Cancel
    {% endblock %}