X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fmark.pp;h=f4b7de0a37bf65f4ddbd9342c0d10b1ff8c288c2;hb=23637e2ab8dae75b76d328fa8be2da09fd0dfc44;hp=d83a02c44d98f36892870c8b90e9d7f4092dba3d;hpb=ddf1ad06b7965d831573d06f3890650ed487a548;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/mark.pp b/manifests/mark.pp index d83a02c..f4b7de0 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 @@ -21,4 +21,3 @@ define apt::mark ( unless => $unless_cmd, } } -