aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/media_cfg.pp
blob: c6de0d352825799156ea914ec628a4d4e310721b (plain)
1
2
3
4
5
6
7
8
9
10
define buildsystem::media_cfg($distro, $arch, $templatefile = 'buildsystem/media.cfg') {
    include buildsystem::scheduler::var
    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),
    }
}