aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/media_cfg.pp
blob: 5418e5d8b7a16fc9ba968d834de86af6a49b8e4e (plain)
1
2
3
4
5
6
7
8
9
10
define buildsystem::media_cfg($distro, $arch, $templatefile = 'buildsystem/media.cfg') {
    include buildsystem::var::scheduler
    include buildsystem::repository
    
    file { "${buildsystem::repository::dir}/distrib/${distro}/${arch}/media/media_info/media.cfg":
        owner  => $buildsystem::base::sched_login,
        group  => $buildsystem::base::sched_login,
	content => template($templatefile),
    }
}