apt README
This commit is contained in:
parent
4aa8a18b4f
commit
843712d7bf
1 changed files with 20 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# https://manpages.debian.org/latest/apt/sources.list.5.de.html
|
||||||
|
# https://repolib.readthedocs.io/en/latest/deb822-format.html
|
||||||
|
|
||||||
```python
|
```python
|
||||||
{
|
{
|
||||||
'apt': {
|
'apt': {
|
||||||
|
@ -5,8 +8,23 @@
|
||||||
'apt-transport-https': {},
|
'apt-transport-https': {},
|
||||||
},
|
},
|
||||||
'sources': {
|
'sources': {
|
||||||
# place key under data/apt/keys/packages.cloud.google.com.{asc|gpg}
|
'debian': {
|
||||||
'deb https://packages.cloud.google.com/apt cloud-sdk main',
|
'urls': 'https://deb.debian.org/debian',
|
||||||
|
'suites': { # at least one
|
||||||
|
'{codename}',
|
||||||
|
'{codename}-updates',
|
||||||
|
'{codename}-backports',
|
||||||
|
},
|
||||||
|
'components': { # optional
|
||||||
|
'main',
|
||||||
|
'contrib',
|
||||||
|
'non-frese',
|
||||||
|
},
|
||||||
|
# key:
|
||||||
|
# - optional, defaults to source name (`debian` in this example)
|
||||||
|
# - place key under data/apt/keys/debian-12.{asc|gpg}
|
||||||
|
'key': 'debian-{version}',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue