add keytab and ssh key for releng rebuilds on composer machines in stage

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2017-11-29 17:44:43 +00:00
parent 7bc194f17a
commit f0571cdb2e

View file

@ -89,5 +89,18 @@
- python2-dockerfile-parse
when: env == "staging" and ansible_architecture != "ppc64"
- name: set releng user keytab
copy:
src: "{{private}}/files/keytabs/{{env}}/releng"
dest: /etc/krb5.releng.keytab
when: env == "staging"
- name: copy releng ssh key for rebuild fedpkg/distgit pushes
copy:
src: "{{private}}/files/releng/sshkeys/container-rebuild-staging"
dest: /etc/pki/releng
when: env == "staging"
handlers:
- import_tasks: "{{ handlers_path }}/restart_services.yml"