Commit e820c282 by Michael DeHaan

Merge pull request #760 from sfromm/fixes

A couple fixes for the file module
parents f092a69d d0892c19
...@@ -224,7 +224,7 @@ def main(): ...@@ -224,7 +224,7 @@ def main():
seuser = dict(), seuser = dict(),
serole = dict(), serole = dict(),
selevel = dict(), selevel = dict(),
secontext = dict(), setype = dict(),
) )
) )
...@@ -322,7 +322,7 @@ def main(): ...@@ -322,7 +322,7 @@ def main():
else: else:
abs_src = os.path.join(os.path.dirname(dest), src) abs_src = os.path.join(os.path.dirname(dest), src)
if not os.path.exists(abs_src): if not os.path.exists(abs_src):
module_fail_json(dest=dest, src=src, msg='src file does not exist') module_fail_json(path=path, src=src, msg='src file does not exist')
if prev_state == 'absent': if prev_state == 'absent':
os.symlink(src, path) os.symlink(src, path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment