1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-01 16:18:55 +00:00

Support full path templates (#26121)

This patch allows the iapp service module to support full path
templates instead of only relative templates
This commit is contained in:
Tim Rupp 2017-06-28 09:35:00 -07:00 committed by John R Barker
parent 04ac15f241
commit e7402e3d5b
2 changed files with 26 additions and 0 deletions

View file

@ -289,6 +289,8 @@ class Parameters(AnsibleF5Parameters):
return None
if self._values['template'].startswith("/" + self.partition):
return self._values['template']
elif self._values['template'].startswith("/"):
return self._values['template']
else:
return '/{0}/{1}'.format(
self.partition, self._values['template']