From bc5fa48eb200829ba096b816382d0a4dcb1872c1 Mon Sep 17 00:00:00 2001 From: David Kirwan Date: Thu, 29 Jul 2021 11:30:59 +0100 Subject: [PATCH] metrics-for-apps: hotfix task ordering Signed-off-by: David Kirwan --- roles/tftp_server/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/tftp_server/tasks/main.yml b/roles/tftp_server/tasks/main.yml index ece1a97380..4bb4c440fb 100644 --- a/roles/tftp_server/tasks/main.yml +++ b/roles/tftp_server/tasks/main.yml @@ -37,16 +37,16 @@ - tftp_server when: datacenter != 'iad2' -- name: Set permissions on the rhcos tftpboot folder - file: - path: /var/lib/tftpboot/rhcos - mode: '0755' +- name: fill up the tftpboot directory + synchronize: src="{{ bigfiles }}/tftpboot2/" dest=/var/lib/tftpboot/ tags: - tftp_server when: datacenter == 'iad2' -- name: fill up the tftpboot directory - synchronize: src="{{ bigfiles }}/tftpboot2/" dest=/var/lib/tftpboot/ +- name: Set permissions on the rhcos tftpboot folder + file: + path: /var/lib/tftpboot/rhcos + mode: '0755' tags: - tftp_server when: datacenter == 'iad2'