[copr] backend: new options in /etc/copr/copr-be.conf

This commit is contained in:
Valentin Gologuzov 2014-11-25 18:51:28 +01:00
parent d08b28280d
commit b7969beabc
4 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,6 @@
---
_lighttpd_conf_src: "lighttpd/lighttpd.conf"
_copr_be_conf: "copr-be.conf"
do_sign: "false"
keygen_host: "copr-keygen.cloud.fedoraproject.org"

View File

@ -1,3 +1,6 @@
---
_lighttpd_conf_src: "lighttpd/lighttpd_dev.conf"
_copr_be_conf: "copr-be.conf-dev"
do_sign: "true"
keygen_host: "209.132.184.124"

View File

@ -64,7 +64,11 @@ fedmsg_enabled=true
# enable package signing, require configured
# signer host and correct /etc/sign.conf
do_sign=false
do_sign={{ do_sign }}
# host or ip of machine with copr-keygen
# usually the same as in /etc/sign.conf
keygen_host={{ keygen_host }}
# minimum age for builds to be pruned
prune_days=14

View File

@ -63,7 +63,11 @@ worker_logdir=/var/log/copr/workers/
# enable package signing, require configured
# signer host and correct /etc/sign.conf
do_sign=true
do_sign={{ do_sign }}
# host or ip of machine with copr-keygen
# usually the same as in /etc/sign.conf
keygen_host={{ keygen_host }}
# minimum age for builds to be pruned
prune_days=14