File: auth_conf_entry.pp

package info (click to toggle)
puppet-module-puppetlabs-apt 9.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: ruby: 438; sh: 31; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# @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
  }
]