fixed issue with directory permissions on copy #6552

This commit is contained in:
Brian Coca 2014-03-18 22:29:22 -04:00
parent d10de23f39
commit 402cd11c52

View file

@ -203,7 +203,7 @@ def main():
src = os.path.expanduser(src)
# original_basename is used by other modules that depend on file.
if os.path.isdir(path) and state not in ["link", "absent", "directory"]:
if os.path.isdir(path) and state not in ["link", "absent"]:
if params['original_basename']:
basename = params['original_basename']
else: