I am trying to checkout a SVN repository from my repository server using Ansible subversion module. I already configured one svn repository in my server. And I am trying to checkout that into my Ec2 machine using Ansible playbook and subversion module. But when I am running the playbook, I am getting the error that:
fatal: [localhost]: FAILED! => {"changed": false, "msg": "ERROR: ././ folder already exists, but its not a subversion repository."}
My Ansible role tasks contain the following:
- name: SVN checkout
subversion:
repo: <my-ip>/svn/test
checkout: yes
update: yes
dest: ././
I am getting error like the following,
Updated Observation
When I am only exporting using " export: yes " option, it's properly working. The problem is only for checkout operation.
My confusion is that, Is there any problem for my checkout using above YML? Why only showing these type of error ? Since export also properly working.
