On Monday, 29 January 2018 18.39.04 CET 'sterlij1' via Ansible Project wrote: > Has anyone else come across this issue? If so any pointers in > troubleshooting it? > > I added some auditd monitoring of the file in question and it doesn't > appear that any systemd services are touching the file. > > I'm wondering if its something to do with the way the ansible template > module / python copies the tmp files it needs and then the combination of > the dell perc controller (with write back enabled), our esxi datastores & > the type of controller on the virtual machine. > > If i put a sleep of 40 seconds between the file creation and the reboot VM > we dont get the issue.
This sound like a missing cache sync to disk. If I remembered correctly the default file system in RHEL7 is XFS and RHEL6 is EXT4. EXT4 do automatic sync every few seconds, XFS doesn't do that. You could try to replace the sleep 40 seconds with sync to see if it's a sync cache to disk issue. -- Kai Stian Olstad -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/3109816.gYOIo7Pvv8%40x1. For more options, visit https://groups.google.com/d/optout.
