Skip to content

Commit

Permalink
Remove optional around datatypes as requested in PR voxpupuli#86
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickps committed Mar 6, 2019
1 parent 6cf727d commit d8a759b
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 @@ -20,8 +20,8 @@
#
define yum::group (
Enum['present', 'installed', 'absent', 'purged'] $ensure = 'present',
Optional[Integer] $timeout = undef,
Optional[Array[String]] $install_options = [],
Integer $timeout = undef,
Array[String] $install_options = [],
) {
Exec {
path => '/bin:/usr/bin:/sbin:/usr/sbin',
Expand Down

0 comments on commit d8a759b

Please sign in to comment.