%PDF- %PDF-
| Direktori : /lib/python3.9/site-packages/ansible/plugins/filter/ |
| Current File : //lib/python3.9/site-packages/ansible/plugins/filter/relpath.yml |
DOCUMENTATION:
name: relpath
author: Jakub Jirutka (@jirutka)
version_added: "1.7"
short_description: Make a path relative
positional: _input, start
description:
- Converts the given path to a relative path from the I(start),
or relative to the directory given in I(start).
options:
_input:
description: A path.
type: str
required: true
start:
description: The directory the path should be relative to. If not supplied the current working directory will be used.
type: str
EXAMPLES: |
# foobar => ../test/me.txt
testing: "{{ '/tmp/test/me.txt' | relpath('/tmp/other/') }}"
otherrelpath: "{{ mypath | relpath(mydir) }}"
RETURN:
_value:
description: The relative path.
type: str