summaryrefslogtreecommitdiff
path: root/doc/apt_auth.conf.5.xml
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.9.51.9.5Julian Andres Klode2019-12-021-1/+1
|
* netrc: Restrict auth.conf entries to https by defaultJulian Andres Klode2019-12-021-5/+9
| | | | | | | | | | | | This avoids downgrade attacks where an attacker could inject Location: http://private.example/ and then (having access to raw data to private.example, for example, by opening a port there, or sniffing network traffic) read the credentials for the private repository. Closes: #945911
* Release 1.8.0~alpha31.8.0_alpha3Julian Andres Klode2018-12-181-1/+1
|
* Add support for /etc/apt/auth.conf.d/*.conf (netrcparts)Julian Andres Klode2018-12-041-1/+6
| | | | | | | | | This allows us to install matching auth files for sources.list.d files, for example; very useful. This converts aptmethod's authfd from one FileFd to a vector of pointers to FileFd, as FileFd cannot be copied, and move operators are hard.
* Release 1.7.01.7.0Julian Andres Klode2018-10-071-1/+1
|
* Release 1.5~beta21.5_beta2Julian Andres Klode2017-08-171-1/+1
|
* doc: Fix validity error in apt_auth.conf.5.xmlJulian Andres Klode2017-08-171-1/+2
| | | | | | It contained raw text inside a refsect1 Gbp-Dch: ignore
* reimplement and document auth.confDavid Kalnischkies2017-07-261-0/+132
We have support for an netrc-like auth.conf file since 0.7.25 (closing 518473), but it was never documented in apt that it even exists and netrc seems to have fallen out of usage as a manpage for it no longer exists making the feature even more arcane. On top of that the code was a bit of a mess (as it is written in c-style) and as a result the matching of machine tokens to URIs also a bit strange by checking for less specific matches (= without path) first. We now do a single pass over the stanzas. In practice early adopters of the undocumented implementation will not really notice the differences and the 'new' behaviour is simpler to document and more usual for an apt user. Closes: #811181