aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/repoctl.pp
blob: 8483b59b52bc67d8addf6852ea0ccdfc9f4268f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class buildsystem::repoctl {
    include buildsystem::config

    $distroreleases = [$buildsystem::config::dev_distros,
    $buildsystem::config::stable_distros]
    $distrosections = $buildsystem::config::distrosections
    $sectionsrepos = $buildsystem::config::sectionsrepos
    $arches = $buildsystem::config::architectures

    package{ 'repoctl': }

    file { '/etc/repoctl.conf':
	content => template('buildsystem/repoctl.conf'),
	require => Package['repoctl'],
    }
}