mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
template: expand path if metadata is in user home.
This commit is contained in:
parent
da6cb1ca6e
commit
9e0b7ee629
1 changed files with 2 additions and 1 deletions
|
@ -47,7 +47,8 @@ for x in items:
|
|||
|
||||
source = params['src']
|
||||
dest = params['dest']
|
||||
metadata = params.get('metadata', '/etc/ansible/setup')
|
||||
metadata = params.get('metadata', '/etc/ansible/setup')
|
||||
metadata = os.path.expanduser(metadata)
|
||||
module_vars = params.get('vars')
|
||||
|
||||
# raise an error if there is no template metadata
|
||||
|
|
Loading…
Reference in a new issue