Andy Bavier | 6220bd6 | 2017-02-16 17:41:30 -0800 | [diff] [blame] | 1 | - name: Remove Juju directory |
| 2 | file: |
| 3 | path: "{{ ansible_user_dir }}/.juju" |
| 4 | state: absent |
| 5 | |
| 6 | - name: Remove containers for the OpenStack services |
| 7 | become: yes |
| 8 | lxd_container: |
| 9 | name: "{{ item.name }}" |
| 10 | state: absent |
| 11 | with_items: "{{ head_lxd_list }}" |
| 12 | |
| 13 | - name: Remove PKI directories |
| 14 | become: yes |
| 15 | file: |
| 16 | path: "{{ item }}" |
| 17 | state: absent |
| 18 | with_items: |
| 19 | - /opt/cord/build/platform-install/pki/intermediate_ca |
| 20 | - /opt/cord/build/platform-install/pki/root_ca |