Eric Lippmann 60b8529db0 Revert "puppet: Remove module cmmi_dir"
This reverts commit 2e8f30d440d3964852d725f5e0efa142feef991c.

It's in use :)
2014-12-15 12:23:48 +01:00

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,
}
}