Renamed gcc as gnu::gcc

This commit is contained in:
Ossi Salmi 2013-07-16 15:27:45 +03:00
parent 9efcac9bf6
commit 11cd7e0d56
4 changed files with 28 additions and 27 deletions

View file

@ -11,6 +11,8 @@
#
define vmware::bundle() {
require gnu::gcc
file { "/usr/local/src/${name}.bundle":
ensure => present,
source => "puppet:///files/packages/${name}.${architecture}.bundle",
@ -28,12 +30,10 @@ define vmware::bundle() {
notify => Exec["vmware-modconfig"],
}
include gcc
exec { "vmware-modconfig":
command => "vmware-modconfig --console --install-all",
path => "/bin:/usr/bin:/sbin:/usr/sbin",
creates => "/lib/modules/${kernelrelease}/misc/vmci.ko",
require => Class["gcc"],
}
}