Skip to content

Commit

Permalink
add missing puppet strings docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan33l committed Nov 1, 2019
1 parent 5f8a994 commit 7d57a25
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
34 changes: 17 additions & 17 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class { 'ssp' :
ldap_whochange_pw => 'admin',
mail_from => 'admin@example.com',
manage_git => true,
ldap_url => ['ldap://#{ipa_ip}'],
ldap_url => ['ldap://ldap_address'],
}
```

Expand Down Expand Up @@ -64,6 +64,22 @@ Data type: `String[1]`

LDAP user that change the password

##### `ldap_whochange_sshkey`

Data type: `String[1]`

LDAP user that change the ssh key

Default value: $ldap_whochange_pw

##### `ldap_filter`

Data type: `String[1]`

Filter on reserched objects in LDAP

Default value: '(&(objectClass=person)($ldap_login_attribute={login}))'

##### `manage_git`

Data type: `Boolean`
Expand Down Expand Up @@ -449,19 +465,3 @@ Notify users anytime their sshPublicKey is changed

Default value: `false`

##### `ldap_filter`

Data type: `String[1]`



Default value: '(&(objectClass=person)($ldap_login_attribute={login}))'

##### `ldap_whochange_sshkey`

Data type: `String[1]`



Default value: $ldap_whochange_pw

4 changes: 3 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@
# ldap_whochange_pw => 'admin',
# mail_from => 'admin@example.com',
# manage_git => true,
# ldap_url => ['ldap://#{ipa_ip}'],
# ldap_url => ['ldap://ldap_address'],
# }
#
# @param system_owner system user account that own files
# @param ldap_binddn DN used to bind directory
# @param ldap_bindpw Password of the DN used to bind directory
# @param ldap_base Base search where users are searched.
# @param ldap_whochange_pw LDAP user that change the password
# @param ldap_whochange_sshkey LDAP user that change the ssh key
# @param ldap_filter Filter on reserched objects in LDAP
# @param manage_git Install git if true, required if git is not installed by an other process.
# @param manage_rootpath If true creates the path defined by $system_rootpath
# @param system_rootpath Path where SSP is installed
Expand Down

0 comments on commit 7d57a25

Please sign in to comment.