fixup! integration-playbook: Don't re-swap

This commit is contained in:
Chris Evich 2017-09-21 11:28:38 -04:00
parent ef839a7bbc
commit 7bbad0c7ad

View file

@ -88,8 +88,11 @@
truncate -s 8G /root/swap && \
export SWAPDEV=$(losetup --show -f /root/swap | head -1) && \
mkswap $SWAPDEV && \
swapon $SWAPDEV && \
swapon --show || true
swapon $SWAPDEV || true
- name: Capture current state of swap for debugging
command: swapon --show
register: result
- debug: var=result
- name: Make testing directories to conform to testing standards
file:
path: "{{ item }}"