Skip to content

Commit

Permalink
Finalize RockyLinux 8 support (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-riddle authored Aug 1, 2023
1 parent a186b20 commit e953f3d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ dist
/junit
/log
/doc
/Gemfile.lock
39 changes: 24 additions & 15 deletions REFERENCE.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,40 @@
# Reference

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

## Table of Contents

**Classes**
### Classes

* [`tcpwrappers`](#tcpwrappers): Set up tcpwrappers

**Defined types**
### Defined types

* [`tcpwrappers::allow`](#tcpwrappersallow):
* [`tcpwrappers::allow`](#tcpwrappers--allow)

## Classes

### tcpwrappers
### <a name="tcpwrappers"></a>`tcpwrappers`

Set up tcpwrappers

#### Parameters

The following parameters are available in the `tcpwrappers` class.
The following parameters are available in the `tcpwrappers` class:

* [`default_deny`](#-tcpwrappers--default_deny)
* [`allow_all_local`](#-tcpwrappers--allow_all_local)
* [`package_ensure`](#-tcpwrappers--package_ensure)

##### `default_deny`
##### <a name="-tcpwrappers--default_deny"></a>`default_deny`

Data type: `Boolean`

Add a default ``ALL: ALL`` to ``/etc/hosts.deny``

Default value: `true`

##### `allow_all_local`
##### <a name="-tcpwrappers--allow_all_local"></a>`allow_all_local`

Data type: `Boolean`

Expand All @@ -40,31 +45,35 @@ Allow connections to all services from the local system

Default value: `true`

##### `package_ensure`
##### <a name="-tcpwrappers--package_ensure"></a>`package_ensure`

Data type: `String`

The ensure status of packages to be managed

Default value: simplib::lookup('simp_options::package_ensure', { 'default_value' => 'installed' })
Default value: `simplib::lookup('simp_options::package_ensure', { 'default_value' => 'installed' })`

## Defined types

### tcpwrappers::allow
### <a name="tcpwrappers--allow"></a>`tcpwrappers::allow`

The tcpwrappers::allow class.

#### Parameters

The following parameters are available in the `tcpwrappers::allow` defined type.
The following parameters are available in the `tcpwrappers::allow` defined type:

* [`pattern`](#-tcpwrappers--allow--pattern)
* [`order`](#-tcpwrappers--allow--order)
* [`svc`](#-tcpwrappers--allow--svc)

##### `pattern`
##### <a name="-tcpwrappers--allow--pattern"></a>`pattern`

Data type: `Variant[String,Array[String]]`

The allow pattern based on the content of the man page

##### `order`
##### <a name="-tcpwrappers--allow--order"></a>`order`

Data type: `Integer`

Expand All @@ -73,9 +82,9 @@ The order in which you want this rule to appear
* IF you don't specify an order, the rules will be listed in alphabetical
order

Default value: 1000
Default value: `1000`

##### `svc`
##### <a name="-tcpwrappers--allow--svc"></a>`svc`

Data type: `Optional[String]`

Expand Down

0 comments on commit e953f3d

Please sign in to comment.