aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-04-14 23:45:48 +0000
committerMichael Scherer <misc@mageia.org>2012-04-14 23:45:48 +0000
commit1691dd5e7fda5fd0e47607f64b3297c2825c3d49 (patch)
treec06d65ca993b76eef552890e7da5f16ae513f8d3 /modules/buildsystem/manifests
parent10c7ff16da5e8cb9e79b1872c444210a2a651895 (diff)
downloadpuppet-1691dd5e7fda5fd0e47607f64b3297c2825c3d49.tar
puppet-1691dd5e7fda5fd0e47607f64b3297c2825c3d49.tar.gz
puppet-1691dd5e7fda5fd0e47607f64b3297c2825c3d49.tar.bz2
puppet-1691dd5e7fda5fd0e47607f64b3297c2825c3d49.tar.xz
puppet-1691dd5e7fda5fd0e47607f64b3297c2825c3d49.zip
do not explictely set the same value as default
Diffstat (limited to 'modules/buildsystem/manifests')
-rw-r--r--modules/buildsystem/manifests/repoctl.pp10
1 files changed, 2 insertions, 8 deletions
diff --git a/modules/buildsystem/manifests/repoctl.pp b/modules/buildsystem/manifests/repoctl.pp
index 3f52b79d..024a4a09 100644
--- a/modules/buildsystem/manifests/repoctl.pp
+++ b/modules/buildsystem/manifests/repoctl.pp
@@ -7,15 +7,9 @@ class buildsystem::repoctl {
$sectionsrepos = $buildsystem::config::sectionsrepos
$arches = $buildsystem::config::architectures
- package{'repoctl':
- ensure => installed,
- }
+ package{ 'repoctl': }
- file {'/etc/repoctl.conf':
- ensure => present,
- mode => 644,
- owner => root,
- group => root,
+ file { '/etc/repoctl.conf':
content => template('buildsystem/repoctl.conf'),
require => Package['repoctl'],
}