Peter Pentchev | f48f48b | 2022-12-07 16:51:16 +0200 | [diff] [blame] | 1 | - hosts: all |
2 | tasks: | ||||
3 | - name: Log Out of the Controller | ||||
4 | ansible.builtin.command: juju logout | ||||
Biser Milanov | 5c41820 | 2023-08-31 11:37:54 +0300 | [diff] [blame^] | 5 | ignore_errors: true |
Peter Pentchev | f48f48b | 2022-12-07 16:51:16 +0200 | [diff] [blame] | 6 | |
7 | - name: Remove the Juju Configuration Directory | ||||
8 | ansible.builtin.command: rm -rf ~/.local/share/juju | ||||
Biser Milanov | 5c41820 | 2023-08-31 11:37:54 +0300 | [diff] [blame^] | 9 | ignore_errors: true |