# Reset instance - DANGEROUS!!! - name: Install SDP hosts: all user: ec2-user tasks: - name: Kill processes shell: pkill -9 p4d_1 ignore_errors: True become: true - name: Remove contents of key directories file: path: "{{item}}" state: absent with_items: - /hxdepots/sdp - /hxdepots/p4 - /hxmetadata/p4 - /hxlogs/p4 become: yes