Skip to content

Commit

Permalink
Merge pull request #302 from ricoli/patch-1
Browse files Browse the repository at this point in the history
Package name no longer hardcoded
  • Loading branch information
R. Tyler Croy committed May 18, 2015
2 parents ced81ba + 673a5c4 commit 2343dc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/plugin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@
if (!defined(Group[$group])) {
group { $group :
ensure => present,
require => Package['jenkins'],
require => Package[$::jenkins::package_name],
}
}
if (!defined(User[$username])) {
user { $username :
ensure => present,
home => $plugin_parent_dir,
require => Package['jenkins'],
require => Package[$::jenkins::package_name],
}
}
}
Expand Down

0 comments on commit 2343dc1

Please sign in to comment.