|||
- name: delete old forlder
win_file:
path: "{{downloadpath}}"
state: absent
ignore_errors: True
- name: create svn code directory
win_file: path={{downloadpath}} state=directory
- name: checkout WAPlugAndPlay code
win_command: "svn checkout {{URL}} --username {{username}} --password {{password}} {{downloadpath}}"
register: result