Skip to content

Commit

Permalink
Fix order - set timeout back to optional
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickps committed Mar 6, 2019
1 parent 917fd35 commit 352bbc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/group.pp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
# }
#
define yum::group (
Enum['present', 'installed', 'absent', 'purged'] $ensure = 'present',
Integer $timeout = undef,
Array[String] $install_options = [],
Enum['present', 'installed', 'absent', 'purged'] $ensure = 'present',
Optional[Integer] $timeout = undef,
) {
Exec {
path => '/bin:/usr/bin:/sbin:/usr/sbin',
Expand Down

0 comments on commit 352bbc5

Please sign in to comment.