X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fconf.pp;h=9c1a59e81cffbfae1e64772853b0872f6da6a262;hb=a3b82bc64f4c643631f7841119518dc2ec09fdac;hp=f41501b5d189a64830e7a4c0cbcd1729ca892e87;hpb=c55a6ea90ac351e11b02bd0f9d6ae046e7b971bf;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/conf.pp b/manifests/conf.pp index f41501b..9c1a59e 100644 --- a/manifests/conf.pp +++ b/manifests/conf.pp @@ -1,4 +1,18 @@ -# Defining apt config +# @summary Specifies a custom Apt configuration file. +# +# @param content +# Required unless `ensure` is set to 'absent'. Directly supplies content for the configuration file. +# +# @param ensure +# Specifies whether the configuration file should exist. Valid options: 'present' and 'absent'. +# +# @param priority +# Determines the order in which Apt processes the configuration file. Files with lower priority numbers are loaded first. +# Valid options: a string containing an integer or an integer. +# +# @param notify_update +# Specifies whether to trigger an `apt-get update` run. +# define apt::conf ( Optional[String] $content = undef, Enum['present', 'absent'] $ensure = present,