aboutsummaryrefslogtreecommitdiff
path: root/manifests/xen/domain.pp
blob: 30a0fdfaa701180725619512996d00644e8b98f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# XEN specifica
# Copyright (C) 2007 David Schmitt <david@schmitt.edv-bus.at>
# See LICENSE for the full license granted to you.
class virtual::xen::domain {
    include virtual

    case $operatingsystem {
        debian: { include xen::domain::debian }
        centos: { include xen::domain::centos }
        default: { include xen::domain::base }
    }
}