summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/other_packages.pp
blob: 3673fed9b3d1cf7855dfedf9e6b0cfd04f9b0ef6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class tozt::other_packages {
  package {
    [
      "cronie",
      "exa",
      "fd-rs",
      "fortune-mod",
      "gcc",
      "git",
      "less",
      "lsof",
      "make",
      "pkg-config",
      "puppet",
      "strace",
      "vim",
      "zsh",
    ]:
    ensure => 'installed';
  }

  package {
    [
      "yajl"
    ]:
    ensure => 'installed',
    install_options => ["--asdeps"];
  }

  package::makepkg { 'package-query':
    asdeps => true,
    require => Package['yajl'];
  }

  package::makepkg { 'yaourt':
    require => Package::Makepkg['package-query'];
  }
}