Merge pull request #760 from sfromm/fixes

A couple fixes for the file module
This commit is contained in:
Michael DeHaan 2012-08-02 04:54:16 -07:00
commit 9513cdb970

4
file
View file

@ -224,7 +224,7 @@ def main():
seuser = dict(),
serole = dict(),
selevel = dict(),
secontext = dict(),
setype = dict(),
)
)
@ -322,7 +322,7 @@ def main():
else:
abs_src = os.path.join(os.path.dirname(dest), 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':
os.symlink(src, path)