mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-08-21 09:48:12 +02:00
16 lines
277 B
Puppet
16 lines
277 B
Puppet
define cmmi_dir (
|
|
$configure='./configure',
|
|
$make='make && make install'
|
|
) {
|
|
Exec {
|
|
path => '/usr/bin:/bin',
|
|
cwd => "/usr/local/src/${name}",
|
|
}
|
|
|
|
exec { "configure-${name}":
|
|
command => $configure,
|
|
} -> exec { "make-${name}":
|
|
command => $make,
|
|
}
|
|
}
|