moving all dots
This commit is contained in:
parent
6fcf9ba919
commit
d9b6fdfc1b
349 changed files with 34598 additions and 34727 deletions
16
dot_puppet/cpp.pp
Normal file
16
dot_puppet/cpp.pp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
case $operatingsystem {
|
||||
centos, redhat: {$build_essential = ["make", "automake", "gcc", "gcc-c++", "kernel-devel"]}
|
||||
debian, ubuntu: {$build_essential = ["build-essential"]}
|
||||
default: {fail("Don't know how to make build-essential for $operatingsystem")}
|
||||
}
|
||||
|
||||
package {
|
||||
$build_essential:
|
||||
ensure => "installed"
|
||||
}
|
||||
|
||||
$other_makes = ["cmake"]
|
||||
package {
|
||||
$other_makes:
|
||||
ensure => "installed"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue