Skip to content

Commit

Permalink
fix selenium group not being created
Browse files Browse the repository at this point in the history
As of puppet 3.4.0, the group type will not create/manage a group without
`ensure => present` being set.
  • Loading branch information
Joshua Hoblitt committed Dec 20, 2013
1 parent 83d4c56 commit 169cfcd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@
include wget

user { $user:
gid => [$group],
gid => $group,
}
group { $group:
ensure => present,
}
group { $group: }

$jar_name = "selenium-server-standalone-${version}.jar"

Expand Down

0 comments on commit 169cfcd

Please sign in to comment.