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

@ -57,9 +57,9 @@ define util::extract::tar($source, $ensure=present, $strip=0, $preserve=false) {
}
if $preserve {
$command = "${cat} ${source} | ${tar} xf - --strip-components=${strip} -C ${name}"
$command = "/bin/sh -c 'umask 022; ${cat} ${source} | ${tar} xf - --strip-components=${strip} -C ${name}'"
} else {
$command = "${cat} ${source} | ${tar} xf - --strip-components=${strip} -C ${name} --no-same-owner --no-same-permissions"
$command = "/bin/sh -c 'umask 022; ${cat} ${source} | ${tar} xf - --strip-components=${strip} -C ${name} --no-same-owner --no-same-permissions'"
}
exec { "tar-extract-${name}":