diff options
| -rw-r--r-- | roles/dotfiles/tasks/main.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roles/dotfiles/tasks/main.yml b/roles/dotfiles/tasks/main.yml index d962dbbe..412b2723 100644 --- a/roles/dotfiles/tasks/main.yml +++ b/roles/dotfiles/tasks/main.yml @@ -12,4 +12,7 @@ ansible.builtin.shell: cmd: "{{ dotfiles_setup_script }}" executable: "/bin/bash" - creates: "{{ ansible_env.HOME }}/.bash_profile" + changed_when: true + tags: + # Since the script will report changed every time (even thought it's idempotent) + - molecule-idempotence-notest |
