We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 153ea6a commit a262da2Copy full SHA for a262da2
manifests/config.pp
@@ -1,7 +1,6 @@
1
class pamldap::config (
2
$base_dn,
3
$uris,
4
- $domain,
5
) {
6
$uris_space = join($uris, ' ')
7
$uris_comma = join($uris, ',')
manifests/init.pp
@@ -1,11 +1,9 @@
class pamldap (
$base_dn = hiera('pamldap::base_dn'),
- $domain = hiera('pamldap::domain'),
$uris = hiera('pamldap::uris'),
class { 'pamldap::config':
base_dn => $base_dn,
8
- domain => $domain,
9
uris => $uris,
10
}
11
include pamldap::install
0 commit comments