Add secondary koji configs for secondary sigul bridge.
This commit is contained in:
parent
236f1f8341
commit
a2d555b068
4 changed files with 93 additions and 2 deletions
27
files/sign/koji-arm.conf
Normal file
27
files/sign/koji-arm.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
[koji]
|
||||
|
||||
;configuration for koji cli tool
|
||||
|
||||
;url of XMLRPC server
|
||||
server = http://arm.koji.fedoraproject.org/kojihub
|
||||
|
||||
;url of web interface
|
||||
weburl = http://arm.koji.fedoraproject.org/koji
|
||||
|
||||
;url of package download site
|
||||
topurl = http://armpkgs.fedoraproject.org/
|
||||
|
||||
;path to the koji top directory
|
||||
;topdir = /mnt/koji
|
||||
|
||||
;configuration for SSL athentication
|
||||
|
||||
;client certificate
|
||||
cert = ~/.fedora.cert
|
||||
|
||||
;certificate of the CA that issued the client certificate
|
||||
ca = ~/.fedora-upload-ca.cert
|
||||
|
||||
;certificate of the CA that issued the HTTP server certificate
|
||||
serverca = ~/.fedora-server-ca.cert
|
||||
|
27
files/sign/koji-ppc.conf
Normal file
27
files/sign/koji-ppc.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
[koji]
|
||||
|
||||
;configuration for koji cli tool
|
||||
|
||||
;url of XMLRPC server
|
||||
server = http://ppc.koji.fedoraproject.org/kojihub
|
||||
|
||||
;url of web interface
|
||||
weburl = http://ppc.koji.fedoraproject.org/koji
|
||||
|
||||
;url of package download site
|
||||
topurl = http://ppc.koji.fedoraproject.org/
|
||||
|
||||
;path to the koji top directory
|
||||
;topdir = /mnt/koji
|
||||
|
||||
;configuration for SSL athentication
|
||||
|
||||
;client certificate
|
||||
cert = ~/.fedora.cert
|
||||
|
||||
;certificate of the CA that issued the client certificate
|
||||
ca = ~/.fedora-upload-ca.cert
|
||||
|
||||
;certificate of the CA that issued the HTTP server certificate
|
||||
serverca = ~/.fedora-server-ca.cert
|
||||
|
27
files/sign/koji-s390.conf
Normal file
27
files/sign/koji-s390.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
[koji]
|
||||
|
||||
;configuration for koji cli tool
|
||||
|
||||
;url of XMLRPC server
|
||||
server = http://s390.koji.fedoraproject.org/kojihub
|
||||
|
||||
;url of web interface
|
||||
weburl = http://s390.koji.fedoraproject.org/koji
|
||||
|
||||
;url of package download site
|
||||
topurl = http://s390pkgs.fedoraproject.org/
|
||||
|
||||
;path to the koji top directory
|
||||
;topdir = /mnt/koji
|
||||
|
||||
;configuration for SSL athentication
|
||||
|
||||
;client certificate
|
||||
cert = ~/.fedora.cert
|
||||
|
||||
;certificate of the CA that issued the client certificate
|
||||
ca = ~/.fedora-upload-ca.cert
|
||||
|
||||
;certificate of the CA that issued the HTTP server certificate
|
||||
serverca = ~/.fedora-server-ca.cert
|
||||
|
|
@ -37,8 +37,18 @@
|
|||
- config
|
||||
when: inventory_hostname.startswith('secondary')
|
||||
|
||||
- name: setup secondary /etc/sigul/server.conf file
|
||||
copy: src="{{ files }}/sign/server.conf.secondary" dest=/etc/sigul/server.conf owner=root group=sigul mode=640
|
||||
- name: Install secondary arch koji configs
|
||||
template: src="{{ files }}/sign/bridge.conf.secondary.j2" dest=/etc/sigul/bridge.conf owner=root group=sigul mode=640
|
||||
tags:
|
||||
- config
|
||||
when: inventory_hostname.startswith('secondary')
|
||||
|
||||
- name: setup secondary koji config files
|
||||
copy: src="{{ files }}/sign/{{ item }}" dest=/etc/{{ item }} owner=root group=root mode=644
|
||||
with_items:
|
||||
- koji-arm.conf
|
||||
- koji-ppc.conf
|
||||
- koji-s390.conf
|
||||
when: inventory_hostname.startswith('secondary')
|
||||
|
||||
- name: setup gpg link
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue