summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/other_packages.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tozt/manifests/other_packages.pp')
-rw-r--r--modules/tozt/manifests/other_packages.pp67
1 files changed, 0 insertions, 67 deletions
diff --git a/modules/tozt/manifests/other_packages.pp b/modules/tozt/manifests/other_packages.pp
deleted file mode 100644
index 774d60d..0000000
--- a/modules/tozt/manifests/other_packages.pp
+++ /dev/null
@@ -1,67 +0,0 @@
-class tozt::other_packages {
- package {
- [
- "autoconf",
- "automake",
- "bc",
- "cmake",
- "cronie",
- "exa",
- "fortune-mod",
- "fzf",
- "gcc",
- "git",
- "haveged",
- "htop",
- "less",
- "lsof",
- "make",
- "mlocate",
- "ncdu",
- "ntp",
- "pass",
- "pkgconf",
- "puppet",
- "strace",
- "the_silver_searcher",
- "tmux",
- "vim",
- "zsh",
- ]:
- ensure => 'installed';
- }
-
- package {
- [
- "yajl"
- ]:
- ensure => 'installed',
- install_options => ["--asdeps"];
- }
-
- package::makepkg { 'package-query':
- ensure => installed,
- asdeps => true,
- require => Package['yajl'];
- }
-
- package::makepkg { 'yaourt':
- ensure => installed,
- require => Package::Makepkg['package-query'];
- }
-
- service {
- 'cronie':
- ensure => running,
- enable => true,
- require => Package['cronie'];
- 'haveged':
- ensure => running,
- enable => true,
- require => Package['haveged'];
- 'ntpd':
- ensure => running,
- enable => true,
- require => Package['ntp'];
- }
-}