@@ -30,8 +30,8 @@ package can be found in jessie-backports. When using
3030can be used:
3131
3232``` puppet
33- include :: apt
34- include :: apt::backports
33+ include apt
34+ include apt::backports
3535apt::pin { 'jessie-backports-letsencrypt':
3636 release => 'jessie-backports',
3737 packages => prefix(['acme', 'cryptography', 'openssl', 'psutil', 'setuptools', 'pyasn1', 'pkg-resources'], 'python-'),
@@ -47,15 +47,15 @@ To install the Let's Encrypt client with the default configuration settings you
4747must provide your email address to register with the Let's Encrypt servers:
4848
4949``` puppet
50- class { :: letsencrypt:
50+ class { letsencrypt:
51515252}
5353```
5454
5555If using Ubuntu16.04 with ` install_method ` to default ` package ` , you can enforce upgrade of package from 0.4 to 0.7 with :
5656
5757``` puppet
58- class { :: letsencrypt:
58+ class { letsencrypt:
59596060 package_ensure => 'latest',
6161}
@@ -64,7 +64,7 @@ class { ::letsencrypt:
6464If using EL7 without EPEL-preconfigured, add ` configure_epel ` :
6565
6666``` puppet
67- class { :: letsencrypt:
67+ class { letsencrypt:
6868 configure_epel => true,
69697070}
@@ -79,7 +79,7 @@ the client.
7979Alternatively, you can specify your email address in the $config hash:
8080
8181``` puppet
82- class { :: letsencrypt:
82+ class { letsencrypt:
8383 config => {
84848585 server => 'https://acme-v01.api.letsencrypt.org/directory',
@@ -94,7 +94,7 @@ If you don't wish to provide your email address, you can set the
9494` unsafe_registration ` parameter to ` true ` (this is not recommended):
9595
9696``` puppet
97- class { :: letsencrypt:
97+ class { letsencrypt:
9898 unsafe_registration => true,
9999}
100100```
0 commit comments