apt::mark: fix docs
authorKenyon Ralph <kenyon@kenyonralph.com>
Fri, 9 Apr 2021 18:47:11 +0000 (11:47 -0700)
committerKenyon Ralph <kenyon@kenyonralph.com>
Fri, 9 Apr 2021 20:00:53 +0000 (13:00 -0700)
* Add Puppet Strings summary.
* Typo fix in link to manual page.

manifests/mark.pp

index d83a02c44d98f36892870c8b90e9d7f4092dba3d..dfad6b83d9ee96bee41e40cd382f435078533778 100644 (file)
@@ -1,13 +1,13 @@
-# defined typeapt::mark
+# @summary Manages apt-mark settings
 #
 # @param setting
 #   auto, manual, hold, unhold
 #   specifies the behavior of apt in case of no more dependencies installed
-#   https://manpages.debian.org/sretch/apt/apt-mark.8.en.html
+#   https://manpages.debian.org/stable/apt/apt-mark.8.en.html
 #
 define apt::mark (
   Enum['auto','manual','hold','unhold'] $setting,
-){
+) {
   case $setting {
     'unhold': {
       $unless_cmd = undef