adding oh-my-zsh for root user

This commit is contained in:
2021-03-07 23:08:35 +00:00
parent 63457caed5
commit 3c0e08ac91
4 changed files with 166 additions and 6 deletions

View File

@@ -1,5 +1,15 @@
- name: Remove temporary directory
file:
path: "{{ temp_install_dir.path }}"
state: absent
when: temp_install_dir.path is defined
- name: Cleanup tasks
tags: cleanup
become: true
block:
- name: Remove temporary directory
file:
path: "{{ temp_install_dir.path }}"
state: absent
when: temp_install_dir.path is defined
- name: Remove temporary root directory
file:
path: "{{ temp_install_dir_root.path }}"
state: absent
when: temp_install_dir_root.path is defined