32 lines
1.1 KiB
Puppet
32 lines
1.1 KiB
Puppet
# == Class: proxmox::params
|
|
#
|
|
class proxmox::params {
|
|
case $::osfamily {
|
|
'Debian': {
|
|
if $::operatingsystem == 'Debian' and versioncmp($::operatingsystemrelease, '7.0') >= 0 {
|
|
# Virtual Environment packages
|
|
$ve_pkg_ensure = 'present'
|
|
$ve_pkg_name = [ 'proxmox-ve-2.6.32', 'ksm-control-daemon', 'vzprocps', 'open-iscsi', 'bootlogd', 'pve-firmware' ]
|
|
|
|
# PVE Kernel
|
|
$kvm_only = false
|
|
$kernel_kvm_pkg_name = [ 'pve-kernel-3.10.0-5-pve' ]
|
|
$kernel_pkg_name = [ 'pve-kernel-2.6.32-34-pve' ]
|
|
|
|
# Recommended packages
|
|
$rec_pkg_name = [ 'ntp', 'ssh', 'lvm2', 'bridge-utils' ]
|
|
|
|
# Old useless packages
|
|
$old_pkg_ensure = 'absent'
|
|
$old_pkg_name = [ 'acpid', 'linux-image-amd64', 'linux-base', 'linux-image-3.2.0-4-amd64' ]
|
|
|
|
}
|
|
}
|
|
default: {
|
|
fail("Proxmox only works with Debian system; osfamily (${::osfamily}) or lsbdistid (${::lsbdistid}) is unsupported")
|
|
}
|
|
}
|
|
|
|
|
|
} # Private class: proxmox::params
|