From 31cd3e4d5729ba3fae7b001e92d99f5cdfa912cc Mon Sep 17 00:00:00 2001 From: Geoff Jacobs Date: Wed, 26 Apr 2023 15:52:30 +1000 Subject: [PATCH] ansible doesn't seem to like updating an empty folder to a symlink, removing --- roles/product_install/tasks/bitbucket_extra_tasks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/product_install/tasks/bitbucket_extra_tasks.yml b/roles/product_install/tasks/bitbucket_extra_tasks.yml index 3990b37..f10ce08 100644 --- a/roles/product_install/tasks/bitbucket_extra_tasks.yml +++ b/roles/product_install/tasks/bitbucket_extra_tasks.yml @@ -1,7 +1,7 @@ --- - name: Create the product local home directory ansible.builtin.file: - path: "{{ atl_product_home }}/shared" + path: "{{ atl_product_home }}" state: directory owner: "{{ atl_product_user }}" group: "{{ atl_product_user }}"