Run commands with more permissive umask.

This commit is contained in:
Ossi Herrala 2012-04-02 12:52:41 +00:00
parent 6b21bb54ef
commit bcefe1ff00
2 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ define python::setup::install($python="python") {
exec { "python-setup-install-${name}":
path => "/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin",
cwd => "${name}",
command => "${python} setup.py install",
command => "/bin/sh -c 'umask 022; ${python} setup.py install'",
creates => "${name}/build",
}