summaryrefslogtreecommitdiffstats
path: root/modules/c_toolchain/manifests/init.pp
blob: 2f9a364b301c86ce0810c48dfcdc7171f7dbd4ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class c_toolchain {
  package {
    [
      "autoconf",
      "automake",
      "gcc",
      "make",
      "pkgconf",
    ]:
    ensure => installed,
  }
}