Skip to content

Commit

Permalink
Clean up and generate strings docs
Browse files Browse the repository at this point in the history
Generate REFERENCE.md file correcting some yardoc
syntax errors.

Fixes #38 also
  • Loading branch information
traylenator committed Dec 5, 2020
1 parent 82df136 commit 62dd8a7
Show file tree
Hide file tree
Showing 7 changed files with 203 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ nscd::dbconfig:
## Usage
Generated puppet strings documentation with examples is available from
https://voxpupuli.org/puppet-nscd/
[REFERENCE.md](REFERENCE.md)
## Authors
Expand Down
190 changes: 190 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
# Reference

<!-- DO NOT EDIT: This document was generated by Puppet Strings -->

## Table of Contents

### Classes

#### Public Classes

* [`nscd`](#nscd): Configures /etc/ncsd.conf and controls nscd service.
* [`nscd::config`](#nscdconfig): == Class nscd::config Configures nscd.

#### Private Classes

* `nscd::install`: installs nscd
* `nscd::service`: controls nscd service

### Data types

* [`Nscd::Database`](#nscddatabase): hash of configuration in nscd.conf
* [`Nscd::Database::Settings`](#nscddatabasesettings): all possible settings an nscd database can have

## Classes

### `nscd`

nscd class.

Note for each database at least the `enable-cache` key
must be specified.

#### Examples

#####

```puppet
class{'nscd':
dbconfigs => {
'passwd' => {'enable-cache' => true,
'maximum-time-to-live' => 100,
},
'group' => {'enable-cache' => true,
'maximum-time-to-live' => 100,
},
}
```

#### Parameters

The following parameters are available in the `nscd` class.

##### `pkg_ensure`

Data type: `Enum['present','absent','latest']`

state of nscd package.

Default value: `'present'`

##### `service_ensure`

Data type: `Boolean`

state of nscd service ensure

Default value: ``true``

##### `service_enable`

Data type: `Boolean`

state of nscd service enable

Default value: ``true``

##### `threads`

Data type: `Integer`

number of threads.

Default value: `5`

##### `max_threads`

Data type: `Integer`

maximum number of threads.

Default value: `32`

##### `paranoia`

Data type: `Boolean`

enable internal restart mode.

Default value: ``false``

##### `restart_interval`

Data type: `Optional[Integer]`

nscd internal restart interval

Default value: ``undef``

##### `user`

Data type: `String[1]`

specify which user should run nscd

Default value: `'root'`

##### `stat_user`

Data type: `Optional[String[1]]`

which users can query statistics

Default value: ``undef``

##### `debug_level`

Data type: `Integer`

debug level

Default value: `0`

##### `reload_count`

Data type: `Integer`

any many reload attempts to make

Default value: `5`

##### `logfile`

Data type: `Optional[Stdlib::UnixPath]`

specify a debug log file location.

Default value: ``undef``

##### `dbconfig`

Data type: `Nscd::Database`

configuration for each of the passwd, group, hosts and service database.

### `nscd::config`

== Class nscd::config
Configures nscd.

## Data types

### `Nscd::Database`

hash of configuration in nscd.conf

Alias of `Struct[{
Optional['passwd'] => Nscd::Database::Settings,
Optional['group'] => Nscd::Database::Settings,
Optional['hosts'] => Nscd::Database::Settings,
Optional['services'] => Nscd::Database::Settings,
Optional['netgroup'] => Nscd::Database::Settings,
}]`

### `Nscd::Database::Settings`

all possible settings an nscd database can have

Alias of `Struct[{
'enable-cache' => Boolean,
Optional['positive-time-to-live'] => Integer,
Optional['negative-time-to-live'] => Integer,
Optional['suggested-size'] => Integer,
Optional['check-files'] => Boolean,
Optional['persistent'] => Boolean,
Optional['shared'] => Boolean,
Optional['max-db-size'] => Integer,
Optional['auto-propagate'] => Boolean,
}]`

6 changes: 3 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
# @param service_enable state of nscd service enable
# @param threads number of threads.
# @param max_threads maximum number of threads.
# @prarm paranoia enable internal restart mode.
# @param paranoia enable internal restart mode.
# @param restart_interval nscd internal restart interval
# @param user specify which user should run nscd
# @param stat_user which users can query statistics
# @param debug_level debug level
# @param reload_count any many reload attempts to make
# @param logfile specify a debug log file location.
# @dbconfig configuration for each of the passwd, group, hosts and service database.

# @param dbconfig configuration for each of the passwd, group, hosts and service database.
#
class nscd (
Nscd::Database $dbconfig,
Enum['present','absent','latest'] $pkg_ensure = 'present',
Expand Down
3 changes: 3 additions & 0 deletions manifests/install.pp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# @summary installs nscd
# @api private
#
class nscd::install (
$pkg_ensure = $nscd::pkg_ensure
) {
Expand Down
3 changes: 3 additions & 0 deletions manifests/service.pp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# @summary controls nscd service
# @api private
#
class nscd::service (
$service_ensure = $nscd::service_ensure,
$service_enable = $nscd::service_enable,
Expand Down
1 change: 1 addition & 0 deletions types/database.pp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# @summary hash of configuration in nscd.conf
type Nscd::Database = Struct[
{
Optional['passwd'] => Nscd::Database::Settings,
Expand Down
2 changes: 2 additions & 0 deletions types/database/settings.pp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# @summary all possible settings an nscd database can have
#
type Nscd::Database::Settings = Struct[
{
'enable-cache' => Boolean,
Expand Down

0 comments on commit 62dd8a7

Please sign in to comment.