From: Kenyon Ralph Date: Fri, 9 Apr 2021 18:47:11 +0000 (-0700) Subject: apt::mark: fix docs X-Git-Tag: v8.1.0~9^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=d55aec700c02c14e44f74b68ef6629ba43158363;p=puppet-modules%2Fpuppetlabs-apt.git apt::mark: fix docs * Add Puppet Strings summary. * Typo fix in link to manual page. --- diff --git a/manifests/mark.pp b/manifests/mark.pp index d83a02c..dfad6b8 100644 --- a/manifests/mark.pp +++ b/manifests/mark.pp @@ -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