(CONT-844) - Update .sync.yml
[puppet-modules/puppetlabs-apt.git] / types / auth_conf_entry.pp
1 # @summary Login configuration settings that are recorded in the file `/etc/apt/auth.conf`.
2 #
3 # @see https://manpages.debian.org/testing/apt/apt_auth.conf.5.en.html for more information
4 #
5 # @param machine
6 #   Hostname of machine to connect to.
7 #
8 # @param login
9 #   Specifies the username to connect with.
10 #
11 # @param password
12 #   Specifies the password to connect with.
13 #
14 type Apt::Auth_conf_entry = Struct[
15   {
16     machine => String[1],
17     login => String,
18     password => String
19   }
20 ]