Skip to content

Commit

Permalink
Merge pull request voxpupuli#15 from danieldreier/optional_wget_install
Browse files Browse the repository at this point in the history
Make wget installation optional
  • Loading branch information
nibalizer committed Jun 27, 2015
2 parents 53bbe0f + 7af1c24 commit 1c145d5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@
}
}

ensure_resource('package','wget', { 'ensure' => 'present' })
if ! defined(Package['wget']) {
package {'wget':
ensure => present
}
}

group { 'kafka':
ensure => present
Expand Down

0 comments on commit 1c145d5

Please sign in to comment.