Skip to content

Commit

Permalink
Fixed Undef error (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdenneen authored and pcfens committed Mar 23, 2018
1 parent 1aeb788 commit 3cf22f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions manifests/ca.pp
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
# }

define ca_cert::ca (
Optional[String] $ca_text = undef,
String $source = 'text',
String $ensure = 'trusted',
Boolean $verify_https_cert = true,
Optional[String] $checksum = undef,
String $ca_file_mode = $ca_cert::params::ca_file_mode,
Optional[String] $ca_text = undef,
String $source = 'text',
String $ensure = 'trusted',
Boolean $verify_https_cert = true,
Optional[String] $checksum = undef,
Optional[String] $ca_file_mode = $ca_cert::params::ca_file_mode,
) {

include ::ca_cert::params
Expand Down

0 comments on commit 3cf22f9

Please sign in to comment.