Save extra chmod step if sudoing to root

This commit is contained in:
Michael DeHaan 2012-08-08 19:17:31 -04:00
parent 0f052f2fd0
commit 176bf3cbb5

View file

@ -318,7 +318,7 @@ class Runner(object):
tmp_src = tmp + os.path.basename(source)
conn.put_file(source, tmp_src)
# fix file permissions when the copy is done as a different user
if self.sudo and self.sudo_user:
if self.sudo and self.sudo_user != 'root':
self._low_level_exec_command(conn, "chmod a+r %s" % tmp_src, tmp)
# run the copy module