diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 10:48:20 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 10:48:20 -0200 |
commit | c57e16764692815a8eb6f2b7eb0ccca2b018d632 (patch) | |
tree | bf39108c4bcc16b237334465fa6ffb3bae353518 | |
parent | 4d3d3fa49a7673c3202316c48fe55bf27ee83fa0 (diff) | |
download | puppet-reprepro-c57e16764692815a8eb6f2b7eb0ccca2b018d632.tar.gz puppet-reprepro-c57e16764692815a8eb6f2b7eb0ccca2b018d632.tar.bz2 |
Removing defined function call
-rw-r--r-- | manifests/init.pp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 0bab6d6..96ad467 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -33,10 +33,8 @@ class reprepro( require => Group["reprepro"], } - if !defined(Group["reprepro"]) { - group { "reprepro": - ensure => present, - } + group { "reprepro": + ensure => present, } file { |