summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/other_packages.pp
blob: 88f4db0fab9e1287828435ddee5d6339a5961e7c (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
39
40
41
42
43
44
45
46
47
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'];
  }

  package::yaourt {
    [
      "duplicati-latest",
      "ipbt",
      "ttyrec",
    ]:
    ensure => installed,
  }
}