Merged in oherrala/puppet (pull request #6)

This commit is contained in:
Timo Mäkinen 2012-04-02 16:38:00 +03:00
commit 2758fb1a35
3 changed files with 23 additions and 8 deletions

View file

@ -29,10 +29,25 @@ class libvirt::client {
#
class libvirt::kvm inherits libvirt::client {
package { "qemu-kvm":
ensure => installed,
before => Service["libvirtd"],
require => [ User["qemu"], Group["qemu"] ],
case operatingsystem {
centos,fedora: {
case $operatingsystemrelease {
'/5\.[0-9]+/': {
package { "kvm":
ensure => installed,
before => Service["libvirtd"],
require => [ User["qemu"], Group["qemu"] ],
}
}
default: {
package { "qemu-kvm":
ensure => installed,
before => Service["libvirtd"],
require => [ User["qemu"], Group["qemu"] ],
}
}
}
}
}
if !$libvirt_admingroup {

View file

@ -15,8 +15,8 @@ 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",
cwd => "${name}",
command => "/bin/sh -c 'umask 022; ${python} setup.py install'",
creates => "${name}/build",
}

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}":