I have my symlink and want to create new symlink, that points to the same location that first symlink points. I know I can use cp -d /path/to/symlink /new/path/to/symlink
. But how do it with ansible module?
I was trying copy: src=/path/to/symlink dest=/new/path/to/symlink follow=yes
but it makes a copy of symlink instead create new symlink. Any ideas?