From c5f16adc1efbed69cf60e1f11c5d3ee312ba2bbc Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Thu, 8 Oct 2020 12:15:24 +0200 Subject: site.pp: Ensure that latest libreoffice and latest Linux kernel is installed. --- code/environments/production/manifests/site.pp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'code/environments/production') diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index f1b2ea6..3e22f8a 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -170,6 +170,18 @@ class browsers { # } } +class office { + package { libreoffice: + ensure => 'latest', + } +} + +class linux { + package { linux-image-amd64: + ensure => 'latest', + } +} + class cachefilesd { exec { 'modify_cachefilesd': command => "/bin/sed -e 's/\#RUN=yes/RUN=yes/g' -i /etc/default/cachefilesd" @@ -334,6 +346,8 @@ node /workstation-.*\.intern$/ { debdelta => 1, }, } + class { 'linux': } + class { 'office': } class { 'browsers': } class { 'cachefilesd': } } -- cgit v1.2.3