blob: 024a4a090a7fbcb91740f9b449d6b708a71667ee (
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'],
}
}
|