ansible.builtin.link_exists test – does the path exist, no follow
Note
This test plugin is part of ansible-core
and included in all Ansible
installations. In most cases, you can use the short
plugin name
link_exists
.
However, we recommend you use the Fully Qualified Collection Name (FQCN) ansible.builtin.link_exists
for easy linking to the
plugin documentation and to avoid conflicting with other collections that may have
the same test plugin name.
Synopsis
Check if the provided path maps to an existing symlink on the controller’s filesystem (localhost).
Does not follow symlinks, so it only verifies that the link itself exists.
Input
This describes the input of the test, the value before is ansible.builtin.link_exists
or is not ansible.builtin.link_exists
.
Parameter |
Comments |
---|---|
A path. |
Examples
ismyhostsalink: "{{ '/etc/hosts' is link_exists}}"
list_of_symlinks: "{{ list_of_paths | select('link_exists') }}"
Return Value
Key |
Description |
---|---|
Returns Returned: success |