12 lines
283 B
Puppet
12 lines
283 B
Puppet
# manage the installation of a proxmox node
|
|
class roles::infra::proxmox::node {
|
|
if $facts['firstrun'] {
|
|
include profiles::defaults
|
|
include profiles::firstrun::init
|
|
}else{
|
|
include profiles::defaults
|
|
include profiles::base
|
|
include profiles::proxmox::init
|
|
}
|
|
}
|