diff --git a/REFERENCE.md b/REFERENCE.md
index 8984085..70cb3cb 100644
--- a/REFERENCE.md
+++ b/REFERENCE.md
@@ -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)
@@ -45,30 +42,6 @@ String giving email address to receive alerts; or an array of strings.
Default value: `'root@localhost'`
-##### `pkgurl`
-
-Data type: `String`
-
-String specifying URL to fetch sources from
-
-Default value: `'https://example.org'`
-
-##### `pkgurl_user`
-
-Data type: `String`
-
-String specifying username for pkgurl
-
-Default value: `'someuser'`
-
-##### `pkgurl_pass`
-
-Data type: `String`
-
-String specifying password for pkgurl
-
-Default value: `'somepass'`
-
##### `uptime`
Data type: `Boolean`
diff --git a/manifests/init.pp b/manifests/init.pp
index a41274c..94c4c05 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -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
@@ -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 = [],