From f456d999a9b02c653f3c5cddb4cec90312de5758 Mon Sep 17 00:00:00 2001 From: willthames Date: Fri, 7 Sep 2012 16:22:45 +1000 Subject: [PATCH] Fix templates for non root sudo_user When using template module, if a restrictive umask is set, the sudo_user won't be able to read the /tmp/ansible-dir/source file after it is copied across following _transfer_str I wonder if this behaviour shouldn't be abstracted somehow (as this correction also happens after put_file in the copy module too) --- lib/ansible/runner/action_plugins/template.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ansible/runner/action_plugins/template.py b/lib/ansible/runner/action_plugins/template.py index 62e578d2562..61f2da14718 100644 --- a/lib/ansible/runner/action_plugins/template.py +++ b/lib/ansible/runner/action_plugins/template.py @@ -70,7 +70,10 @@ class ActionModule(object): return ReturnData(conn=conn, comm_ok=False, result=result) xfered = self.runner._transfer_str(conn, tmp, 'source', resultant) - + # fix file permissions when the copy is done as a different user + if self.runner.sudo and self.runner.sudo_user != 'root': + self.runner._low_level_exec_command(conn, "chmod a+r %s" % xfered, + tmp) # run the copy module, queue the file module self.runner.module_args = "%s src=%s dest=%s" % (self.runner.module_args, xfered, dest) return self.runner._execute_module(conn, tmp, 'copy', self.runner.module_args, inject=inject).daisychain('file')