12 lines
310 B
YAML
12 lines
310 B
YAML
---
|
|
|
|
- name: make sure that /etc/osbs directory exists
|
|
file: path=/etc/osbs state=directory
|
|
|
|
- name: put the koji token file in place
|
|
copy:
|
|
src: "{{ private }}/files/osbs/{{ env }}/x86-64-osbs-stg-koji"
|
|
dest: "/etc/osbs/x86-64-osbs-stg-koji"
|
|
owner: root
|
|
mode: 0400
|
|
when: env == "staging"
|