From 996b4312522cb598d2bf697d818470c71239a847 Mon Sep 17 00:00:00 2001 From: Ryan Lane Date: Tue, 19 May 2015 17:33:14 -0700 Subject: [PATCH] Update file.py --- salt/states/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/states/file.py b/salt/states/file.py index 48bcae3416..f8c8cb3d0b 100644 --- a/salt/states/file.py +++ b/salt/states/file.py @@ -3645,7 +3645,7 @@ def copy( ret['changes'] = {name: source} # Preserve really means just keep the behavior of the cp command. If # the filesystem we're copying to is squashed or doesn't support chown - # then we shouldn't be checking permissions + # then we shouldn't be checking anything. if not preserve: __salt__['file.check_perms'](name, ret, user, group, mode) except (IOError, OSError):