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 }}" group: "{{ ansible_ssh_user }}"
- name: update bootstrap-build file permissions - name: update bootstrap-build file permissions
file: file:
path: /tmp/koji-setup/bootstrap-build.sh path: /tmp/koji-setup/koji-bootstrap-build.sh
mode: 0755 mode: 0755
- name: update deploy-koji file permissions - name: update deploy koji hub file permissions
file: 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 mode: 0755
- name: update gencert file permissions - name: update gencert file permissions
file: file:
path: /tmp/koji-setup/gencert.sh path: /tmp/koji-setup/koji-gencert.sh
mode: 0755 mode: 0755
- name: run koji deployment - name: run koji deployment
command: command:
./deploy-koji.sh ./koji-deploy-hub.sh
./koji-add-builder.sh
become: true become: true
args: args:
chdir: /tmp/koji-setup chdir: /tmp/koji-setup
- name: bootstrap build tags and targets - name: bootstrap build tags and targets
command: command:
./bootstrap-build.sh ./koji-bootstrap-build.sh
become: true become: true
args: args:
chdir: /tmp/koji-setup chdir: /tmp/koji-setup