Skip to content

Commit

Permalink
Merge pull request #24 from lsst-it/pkgurl-cleanup
Browse files Browse the repository at this point in the history
Remove unused pkgurl parameters
  • Loading branch information
glennmorris authored May 23, 2024
2 parents b2c602d + ed84b3c commit 3ceda01
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 36 deletions.
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

0 comments on commit 3ceda01

Please sign in to comment.