Merge pull request #4480 from joemaller/absent_path_fix

ignore src when file module state=absent
reviewable/pr18780/r1
jctanner 11 years ago
commit 9543169cca

@ -178,7 +178,7 @@ def main():
if src: if src:
src = os.path.expanduser(src) src = os.path.expanduser(src)
if src is not None and os.path.isdir(path) and state != "link": if src is not None and os.path.isdir(path) and state not in ["link", "absent"]:
params['path'] = path = os.path.join(path, os.path.basename(src)) params['path'] = path = os.path.join(path, os.path.basename(src))
file_args = module.load_file_common_arguments(params) file_args = module.load_file_common_arguments(params)

Loading…
Cancel
Save