updated the ansible.yaml with new script names

This commit is contained in:
Trevor Batley 2023-09-04 19:08:38 +10:00
parent 40d55c87d9
commit a07acd1b9a

View File

@ -14,25 +14,30 @@
group: "{{ ansible_ssh_user }}"
- name: update bootstrap-build file permissions
file:
path: /tmp/koji-setup/bootstrap-build.sh
path: /tmp/koji-setup/koji-bootstrap-build.sh
mode: 0755
- name: update deploy-koji file permissions
- name: update deploy koji hub file permissions
file:
path: /tmp/koji-setup/deploy-koji.sh
path: /tmp/koji-setup/koji-deploy-hub.sh
mode: 0755
- name: update add koji builder file permissions
file:
path: /tmp/koji-setup/koji-add-builder.sh
mode: 0755
- name: update gencert file permissions
file:
path: /tmp/koji-setup/gencert.sh
path: /tmp/koji-setup/koji-gencert.sh
mode: 0755
- name: run koji deployment
command:
./deploy-koji.sh
./koji-deploy-hub.sh
./koji-add-builder.sh
become: true
args:
chdir: /tmp/koji-setup
- name: bootstrap build tags and targets
command:
./bootstrap-build.sh
./koji-bootstrap-build.sh
become: true
args:
chdir: /tmp/koji-setup