summaryrefslogtreecommitdiffstats
path: root/lib/ansible/plugins/filter/expanduser.yml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/filter/expanduser.yml')
-rw-r--r--lib/ansible/plugins/filter/expanduser.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/ansible/plugins/filter/expanduser.yml b/lib/ansible/plugins/filter/expanduser.yml
new file mode 100644
index 0000000..2aff468
--- /dev/null
+++ b/lib/ansible/plugins/filter/expanduser.yml
@@ -0,0 +1,21 @@
+DOCUMENTATION:
+ name: basename
+ author: ansible core team
+ version_added: "1.5"
+ short_description: Returns a path with C(~) translation.
+ description:
+ - Translates C(~) in a path to the proper user's home directory.
+ options:
+ _input:
+ description: A string that contains a path.
+ type: path
+ required: true
+EXAMPLES: |
+
+ # To get '/home/myuser/stuff.txt' from '~/stuff.txt'.
+ {{ mypath | expanduser }}
+
+RETURN:
+ _value:
+ description: The translated path.
+ type: path