Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fraenki committed Apr 16, 2017
1 parent 4e7cd3b commit 41b8f1a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion manifests/certificate.pp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
# }
#
define acme::certificate (
$domain = $name,
$use_account,
$use_profile,
$domain = $name,
$renew_days = $::acme::params::renew_days,
$letsencrypt_ca = undef,
$acme_host = $::acme::acme_host,
Expand Down
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@
# Validate configuration of $acme_host.
if !($profiles) {
# Cannot continue if no profile has been defined.
notify { "Module ${module_name}: \$profiles must be defined on \"${acme_host}\"!" :
notify { "Module ${module_name}: \$profiles must be defined on \"${acme_host}\"!":
loglevel => err,
}
} elsif !($accounts) {
# Cannot continue if no account has been defined.
notify { "Module ${module_name}: \$accounts must be defined on \"${acme_host}\"!" :
notify { "Module ${module_name}: \$accounts must be defined on \"${acme_host}\"!":
loglevel => err,
}
} else {
Expand Down
8 changes: 4 additions & 4 deletions manifests/request.pp
Original file line number Diff line number Diff line change
Expand Up @@ -291,13 +291,13 @@
}

file { $result_crt_file:
source => $le_crt_file,
mode => '0644',
source => $le_crt_file,
mode => '0644',
}

file { $result_chain_file:
source => $le_chain_file,
mode => '0644',
source => $le_chain_file,
mode => '0644',
}

::acme::request::ocsp { $domain:
Expand Down

0 comments on commit 41b8f1a

Please sign in to comment.