I want to move my workspace3 folder to /usr/share directory using below Ansible scripts. But I am unable to move it.
- name: Move workspace3 directory to /usr/share/ Folder
command: mv /tmp/workspace3/ /usr/share
I also tried with shell module
shell: mv /tmp/workspace3 /usr/share
I believe it is a permission issue, how can I define permission through ansible ?