Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add quote marks to class names in readme #242

Merged
merged 1 commit into from
Apr 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ To install the Let's Encrypt client with the default configuration settings you
must provide your email address to register with the Let's Encrypt servers:

```puppet
class { letsencrypt:
class { 'letsencrypt':
email => 'foo@example.com',
}
```

If using Ubuntu16.04 with `install_method` to default `package`, you can enforce upgrade of package from 0.4 to 0.7 with :

```puppet
class { letsencrypt:
class { 'letsencrypt':
email => 'foo@example.com',
package_ensure => 'latest',
}
Expand All @@ -49,7 +49,7 @@ class { letsencrypt:
If using EL7 without EPEL-preconfigured, add `configure_epel`:

```puppet
class { letsencrypt:
class { 'letsencrypt':
configure_epel => true,
email => 'foo@example.com',
}
Expand All @@ -64,7 +64,7 @@ the client.
Alternatively, you can specify your email address in the $config hash:

```puppet
class { letsencrypt:
class { 'letsencrypt':
config => {
email => 'foo@example.com',
server => 'https://acme-v01.api.letsencrypt.org/directory',
Expand All @@ -79,7 +79,7 @@ If you don't wish to provide your email address, you can set the
`unsafe_registration` parameter to `true` (this is not recommended):

```puppet
class { letsencrypt:
class { 'letsencrypt':
unsafe_registration => true,
}
```
Expand Down