From a07acd1b9a87c82506f69efb8e05eb6965172561 Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Mon, 4 Sep 2023 19:08:38 +1000 Subject: [PATCH] updated the ansible.yaml with new script names --- koji.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/koji.yaml b/koji.yaml index e843fd7..a456dd0 100644 --- a/koji.yaml +++ b/koji.yaml @@ -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