Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused pkgurl parameters #24

Merged
merged 2 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ The following parameters are available in the `ccs_monit` class:

* [`mailhost`](#-ccs_monit--mailhost)
* [`alert`](#-ccs_monit--alert)
* [`pkgurl`](#-ccs_monit--pkgurl)
* [`pkgurl_user`](#-ccs_monit--pkgurl_user)
* [`pkgurl_pass`](#-ccs_monit--pkgurl_pass)
* [`uptime`](#-ccs_monit--uptime)
* [`gpfs`](#-ccs_monit--gpfs)
* [`hosts`](#-ccs_monit--hosts)
Expand All @@ -45,30 +42,6 @@ String giving email address to receive alerts; or an array of strings.

Default value: `'root@localhost'`

##### <a name="-ccs_monit--pkgurl"></a>`pkgurl`

Data type: `String`

String specifying URL to fetch sources from

Default value: `'https://example.org'`

##### <a name="-ccs_monit--pkgurl_user"></a>`pkgurl_user`

Data type: `String`

String specifying username for pkgurl

Default value: `'someuser'`

##### <a name="-ccs_monit--pkgurl_pass"></a>`pkgurl_pass`

Data type: `String`

String specifying password for pkgurl

Default value: `'somepass'`

##### <a name="-ccs_monit--uptime"></a>`uptime`

Data type: `Boolean`
Expand Down
9 changes: 0 additions & 9 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@
# String specifying smtp server; or an array of strings.
# @param alert
# String giving email address to receive alerts; or an array of strings.
# @param pkgurl
# String specifying URL to fetch sources from
# @param pkgurl_user
# String specifying username for pkgurl
# @param pkgurl_pass
# String specifying password for pkgurl
# @param uptime
# Monitor uptime
# @param gpfs
Expand All @@ -25,9 +19,6 @@
class ccs_monit (
Variant[String,Array[String]] $mailhost = 'localhost',
Variant[String,Array[String]] $alert = 'root@localhost',
String $pkgurl = 'https://example.org',
String $pkgurl_user = 'someuser',
String $pkgurl_pass = 'somepass',
Boolean $uptime = true,
Boolean $gpfs = false,
Array[String] $hosts = [],
Expand Down
Loading