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

Remove legacy top-scope syntax #171

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class { 'openssl':
Create certificates (see the x509 defined type):

```puppet
class { '::openssl::certificates':
class { 'openssl::certificates':
x509_certs => { '/path/to/certificate.crt' => { ensure => 'present',
password => 'j(D$',
template => '/other/path/to/template.cnf',
Expand Down
4 changes: 2 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Generates x509 certificates based on class parameters
##### basic usage

```puppet
class { '::openssl::certificate':
class { 'openssl::certificate':
x509_certs => { '/path/to/certificate.crt' => { ensure => 'present',
password => 'j(D$',
template => '/other/path/to/template.cnf',
Expand Down Expand Up @@ -127,7 +127,7 @@ Generates openssl.conf files using manually set defaults or defaults from openss
##### basic usage

```puppet
class { '::openssl::configs':
class { 'openssl::configs':
country => 'mycountry',
conffiles => { '/path/to/openssl.conf' => { ensure => 'present',
commonname => 'somewhere.org',
Expand Down
2 changes: 1 addition & 1 deletion manifests/certificates.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# @param x509_certs
#
# @example basic usage
# class { '::openssl::certificate':
# class { 'openssl::certificate':
# x509_certs => { '/path/to/certificate.crt' => { ensure => 'present',
# password => 'j(D$',
# template => '/other/path/to/template.cnf',
Expand Down
2 changes: 1 addition & 1 deletion manifests/configs.pp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# config files to generate
#
# @example basic usage
# class { '::openssl::configs':
# class { 'openssl::configs':
# country => 'mycountry',
# conffiles => { '/path/to/openssl.conf' => { ensure => 'present',
# commonname => 'somewhere.org',
Expand Down