Add delay to fix spurious test breaks.

pull/50729/head
Felix Fontein 6 years ago committed by Matt Clay
parent 6918b4e8f4
commit c89d14da99

@ -21,6 +21,12 @@
# Cleanup # Cleanup
always: always:
- pause:
# ufw creates backups of the rule files with a timestamp; if reset is called
# twice in a row fast enough (so that both timestamps are taken in the same second),
# the second call will notice that the backup files are already there and fail.
# Waiting one second fixes this problem.
seconds: 1
- name: Reset ufw to factory defaults and disable - name: Reset ufw to factory defaults and disable
ufw: ufw:
state: reset state: reset

@ -1,4 +1,10 @@
--- ---
- pause:
# ufw creates backups of the rule files with a timestamp; if reset is called
# twice in a row fast enough (so that both timestamps are taken in the same second),
# the second call will notice that the backup files are already there and fail.
# Waiting one second fixes this problem.
seconds: 1
- name: Reset ufw to factory defaults - name: Reset ufw to factory defaults
ufw: ufw:
state: reset state: reset

Loading…
Cancel
Save