summaryrefslogtreecommitdiffstats
path: root/modules/conf/manifests/init.pp
blob: 4ffd7ad9a0d966d72fc7a0dd6b05a9b20ddd3946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class conf {
  include c_toolchain
  include git

  package {
    [
      "cmake",
      "fortune-mod",
      "inetutils", # for hostname
      "less",
      "vim",
    ]:
    ensure => installed,
  }
}