From 6316dcf32559ee0bde966281df808ad2763bc96a Mon Sep 17 00:00:00 2001 From: rblundon Date: Mon, 12 May 2025 15:22:56 -0500 Subject: [PATCH] another --- .../10-sno-hub-cluster/03-openshift-image/move-pxe-assets.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra-config/10-sno-hub-cluster/03-openshift-image/move-pxe-assets.yml b/infra-config/10-sno-hub-cluster/03-openshift-image/move-pxe-assets.yml index 6859aa7..81bfb4e 100644 --- a/infra-config/10-sno-hub-cluster/03-openshift-image/move-pxe-assets.yml +++ b/infra-config/10-sno-hub-cluster/03-openshift-image/move-pxe-assets.yml @@ -1,7 +1,7 @@ --- - name: Create a directory if it does not exist ansible.builtin.file: - path: "{{ hostvars[groups['matchbox'][0]].assets }}/{{ hostvars[groups['hub-cluster'][0]].cluster_name }}" + path: "{{ hostvars[groups['matchbox'][0]].assets }}/{{ hostvars[groups['hub_cluster'][0]].cluster_name }}" state: directory mode: '0755' become: true @@ -9,7 +9,7 @@ - name: Copy file with owner and permissions ansible.builtin.copy: src: 03-openshift-image/boot-artifacts/ - dest: "{{ hostvars[groups['matchbox'][0]].assets }}/{{ hostvars[groups['hub-cluster'][0]].cluster_name }}/" + dest: "{{ hostvars[groups['matchbox'][0]].assets }}/{{ hostvars[groups['hub_cluster'][0]].cluster_name }}/" owner: matchbox group: matchbox mode: '0644'