Puppet Class: proxmox::cleanup

Defined in:
manifests/cleanup.pp

Overview



3
4
5
6
7
8
9
10
# File 'manifests/cleanup.pp', line 3

class proxmox::cleanup {
  package { ['linux-image-amd64','linux-image-4.19*']:
    ensure => 'absent'
  }
~>exec { '/usr/sbin/update-grub':
    refreshonly => true,
  }
}