DWIM the paths for first_available_file
This commit is contained in:
parent
6fa1a49037
commit
019f775a93
2 changed files with 2 additions and 0 deletions
|
@ -54,6 +54,7 @@ class ActionModule(object):
|
|||
found = False
|
||||
for fn in inject.get('first_available_file'):
|
||||
fn = utils.template(self.runner.basedir, fn, inject)
|
||||
fn = utils.path_dwim(self.runner.basedir, fn)
|
||||
if os.path.exists(fn):
|
||||
source = fn
|
||||
found = True
|
||||
|
|
|
@ -57,6 +57,7 @@ class ActionModule(object):
|
|||
found = False
|
||||
for fn in self.runner.module_vars.get('first_available_file'):
|
||||
fn = utils.template(self.runner.basedir, fn, inject)
|
||||
fn = utils.path_dwim(self.runner.basedir, fn)
|
||||
if os.path.exists(fn):
|
||||
source = fn
|
||||
found = True
|
||||
|
|
Loading…
Reference in a new issue