15 lines
357 B
Bash
15 lines
357 B
Bash
sudo apt install -y extrepo
|
|
|
|
cat <<-EOF | sudo tee /etc/extrepo/config.yaml
|
|
---
|
|
url: https://extrepo-team.pages.debian.net/extrepo-data
|
|
dist: debian
|
|
version: trixie
|
|
# To enable repositories that host software with non-DFSG-free licenses,
|
|
# uncomment "contrib" and/or "non-free" in the list below.
|
|
enabled_policies:
|
|
- main
|
|
- contrib
|
|
- non-free
|
|
EOF
|