From 47a550580d88158e8ead94ef2fe5eeadc820cfd7 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Wed, 7 Nov 2018 15:40:35 -0500 Subject: [PATCH] tools: Clean up /ceph-qa-ready lockfile Signed-off-by: David Galloway --- tools/prep-fog-capture.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/tools/prep-fog-capture.yml b/tools/prep-fog-capture.yml index d8d24cd..2035547 100644 --- a/tools/prep-fog-capture.yml +++ b/tools/prep-fog-capture.yml @@ -9,17 +9,15 @@ become: true tasks: - # The machine used to *capture* the trusty image gets its MAC addresses hard coded in any subsequent cloned machines - - name: Remove udev rules + # We need to leave /.cephlab_rc_local or else each FOG reimage would tell Cobbler to run ceph-cm-ansible + - name: Remove lock files and udev rules file: - path: /etc/udev/rules.d/70-persistent-net.rules - state: absent - - # On the off chance that the rc.local script got run and touched this lockfile, remove it - - name: Remove /.cephlab_net_configured - file: - path: /.cephlab_net_configured + path: "{{ item }}" state: absent + with_items: + - /etc/udev/rules.d/70-persistent-net.rules + - /.cephlab_net_configured + - /ceph-qa-ready - name: Get list of ifcfg scripts from host used to capture image shell: "ls -1 /etc/sysconfig/network-scripts/ifcfg-* | grep -v ifcfg-lo" -- 2.39.5