Skip to content

Commit 246ad51

Browse files
ekohlehelms
authored andcommitted
Add missing data types for parameters
1 parent 8234263 commit 246ad51

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

manifests/apache.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
String $org = $certs::org,
1616
String $org_unit = $certs::org_unit,
1717
String $expiration = $certs::expiration,
18-
$default_ca = $certs::default_ca,
18+
Type[Ca] $default_ca = $certs::default_ca,
1919
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
2020
String $group = $certs::group,
2121
) inherits certs {

manifests/candlepin.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
String $org = $certs::org,
1919
String $org_unit = $certs::org_unit,
2020
String $expiration = $certs::expiration,
21-
$default_ca = $certs::default_ca,
21+
Type[Ca] $default_ca = $certs::default_ca,
2222
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
2323
String $user = 'root',
2424
String $group = 'tomcat',

manifests/foreman.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
String $org = 'FOREMAN',
1515
String $org_unit = 'PUPPET',
1616
String $expiration = $certs::expiration,
17-
$default_ca = $certs::default_ca,
17+
Type[Ca] $default_ca = $certs::default_ca,
1818
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
1919
Stdlib::Absolutepath $server_ca = $certs::katello_server_ca_cert,
2020
String $owner = 'root',

manifests/foreman_proxy.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
String $state = $certs::state,
2727
String $city = $certs::city,
2828
String $expiration = $certs::expiration,
29-
$default_ca = $certs::default_ca,
29+
Type[Ca] $default_ca = $certs::default_ca,
3030
Stdlib::Absolutepath $default_ca_cert = $certs::katello_default_ca_cert,
3131
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
3232
String $group = 'foreman-proxy',

manifests/puppet.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
String $state = $certs::state,
1313
String $city = $certs::city,
1414
String $expiration = $certs::expiration,
15-
$default_ca = $certs::default_ca,
15+
Type[Ca] $default_ca = $certs::default_ca,
1616
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
1717
Stdlib::Absolutepath $server_ca = $certs::katello_server_ca_cert,
1818
Stdlib::Absolutepath $pki_dir = $certs::pki_dir,

manifests/qpid.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
String $city = $certs::city,
1111
String $org_unit = $certs::org_unit,
1212
String $expiration = $certs::expiration,
13-
$default_ca = $certs::default_ca,
13+
Type[Ca] $default_ca = $certs::default_ca,
1414
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
1515
Stdlib::Absolutepath $pki_dir = $certs::pki_dir,
1616
Stdlib::Absolutepath $ca_cert = $certs::ca_cert,

manifests/qpid_router/client.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
String $city = $certs::city,
1515
String $org_unit = $certs::org_unit,
1616
String $expiration = $certs::expiration,
17-
$default_ca = $certs::default_ca,
17+
Type[Ca] $default_ca = $certs::default_ca,
1818
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
1919
) inherits certs {
2020
$client_keypair = "${hostname}-qpid-router-client"

manifests/qpid_router/server.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
String $city = $certs::city,
1515
String $org_unit = $certs::org_unit,
1616
String $expiration = $certs::expiration,
17-
$default_ca = $certs::default_ca,
17+
Type[Ca] $default_ca = $certs::default_ca,
1818
Stdlib::Absolutepath $ca_key_password_file = $certs::ca_key_password_file,
1919
) inherits certs {
2020
$server_keypair = "${hostname}-qpid-router-server"

0 commit comments

Comments
 (0)