Revert "puppet: Remove module cmmi_dir"

This reverts commit 2e8f30d440.

It's in use :)
This commit is contained in:
Eric Lippmann 2014-12-15 12:23:48 +01:00
parent 57fdee3373
commit 60b8529db0
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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,
}
}