X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=types%2Fauth_conf_entry.pp;h=cb6f92a9f5c42e1c45641ad5e9e078b952a00ebc;hb=5403a6eb9197e4da64d0ef7d4d1f91e0e6bf4a3f;hp=40648d1fbd019256f56ff2835773a490e6a4330d;hpb=7fc436b6f7efd749df44bec3ab16f5aafb210a79;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/types/auth_conf_entry.pp b/types/auth_conf_entry.pp index 40648d1..cb6f92a 100644 --- a/types/auth_conf_entry.pp +++ b/types/auth_conf_entry.pp @@ -1 +1,20 @@ -type Apt::Auth_conf_entry = Struct[{ machine => String[1], login => String, password => String }] +# @summary Login configuration settings that are recorded in the file `/etc/apt/auth.conf`. +# +# @see https://manpages.debian.org/testing/apt/apt_auth.conf.5.en.html for more information +# +# @param machine +# Hostname of machine to connect to. +# +# @param login +# Specifies the username to connect with. +# +# @param password +# Specifies the password to connect with. +# +type Apt::Auth_conf_entry = Struct[ + { + machine => String[1], + login => String, + password => String + } +]