|
3 | 3 | # The repos in this file are deprecated and are shown here for reference only |
4 | 4 | ############################################################################# |
5 | 5 |
|
| 6 | +############################################################################### |
| 7 | +# Deb |
| 8 | + |
| 9 | +# List of Deb package repositories. |
| 10 | +# Each item is a dict with the following items: |
| 11 | +# name: Repository name. |
| 12 | +# url: URL of upstream package mirror. |
| 13 | +# policy: Policy for upstream remote. Optional. |
| 14 | +# architectures: Architectures to sync. |
| 15 | +# components: Components to sync. |
| 16 | +# distributions: Distributions to sync. |
| 17 | +# mirror: If True, synchronization will remove all content that is not present |
| 18 | +# in the remote repository. If False, sync will be additive only. |
| 19 | +# Optional, default is true. |
| 20 | +# mode: Publication mode. |
| 21 | +# base_path: Base path prefix for distributions. |
| 22 | +# short_name: Name used internally for variable names. |
| 23 | +# sync_group: Repos with the same group will be synced at the same time |
| 24 | +# distribution_name: Name prefix for distributions. Version will be appended. |
| 25 | +# sync: Whether to sync the repository with a remote. Optional, default is true. |
| 26 | +# publish: Whether to publish and distribute the repository. Optional, default is true. |
| 27 | +deprecated_deb_package_repos: |
| 28 | + # Base Ubuntu Focal 20.04 repositories |
| 29 | + - name: Ubuntu focal |
| 30 | + url: http://archive.ubuntu.com/ubuntu |
| 31 | + policy: immediate |
| 32 | + architectures: amd64 |
| 33 | + components: main restricted universe multiverse |
| 34 | + # NOTE: Include focal-security here to include all dists under one mirror |
| 35 | + # path. This allows us to include security updates when using |
| 36 | + # DIB_DISTRIBUTION_MIRROR with the Diskimage builder ubuntu-minimal |
| 37 | + # element. |
| 38 | + distributions: focal focal-updates focal-backports focal-security |
| 39 | + mirror: true |
| 40 | + mode: verbatim |
| 41 | + base_path: ubuntu/focal/ |
| 42 | + short_name: ubuntu_focal |
| 43 | + sync_group: ubuntu_focal |
| 44 | + distribution_name: ubuntu-focal- |
| 45 | + |
| 46 | + # https://wiki.ubuntu.com/SecurityTeam/FAQ suggests that security.ubuntu.com |
| 47 | + # is preferable for security updates, so use this in preference to the |
| 48 | + # focal-security dist in the main Ubuntu focal repository where possible. |
| 49 | + - name: Ubuntu focal security |
| 50 | + url: http://security.ubuntu.com/ubuntu |
| 51 | + policy: immediate |
| 52 | + architectures: amd64 |
| 53 | + components: main restricted universe multiverse |
| 54 | + distributions: focal-security |
| 55 | + mirror: true |
| 56 | + mode: verbatim |
| 57 | + base_path: ubuntu/focal-security/ |
| 58 | + short_name: ubuntu_focal_security |
| 59 | + sync_group: ubuntu_focal |
| 60 | + distribution_name: ubuntu-focal-security- |
| 61 | + |
| 62 | + # Ubuntu Cloud Archive (UCA) |
| 63 | + - name: Ubuntu Cloud Archive |
| 64 | + url: http://ubuntu-cloud.archive.canonical.com/ubuntu |
| 65 | + policy: immediate |
| 66 | + architectures: amd64 |
| 67 | + components: main |
| 68 | + distributions: focal-updates/yoga |
| 69 | + mirror: true |
| 70 | + mode: verbatim |
| 71 | + base_path: ubuntu-cloud-archive/ |
| 72 | + short_name: ubuntu_cloud_archive |
| 73 | + sync_group: ubuntu_cloud_archive |
| 74 | + distribution_name: ubuntu-cloud-archive- |
| 75 | + |
| 76 | + # Docker CE for Ubuntu Focal |
| 77 | + - name: Docker CE for Ubuntu Focal |
| 78 | + url: https://download.docker.com/linux/ubuntu |
| 79 | + policy: immediate |
| 80 | + architectures: amd64 |
| 81 | + distributions: focal |
| 82 | + components: stable |
| 83 | + mirror: true |
| 84 | + mode: verbatim |
| 85 | + base_path: docker-ce/ubuntu-focal/ |
| 86 | + short_name: docker_ce_ubuntu_focal |
| 87 | + sync_group: docker |
| 88 | + distribution_name: docker-ce-for-ubuntu-focal- |
| 89 | + |
| 90 | + |
6 | 91 | # RPM |
7 | 92 |
|
8 | 93 | # List of RPM package repositories. |
|
0 commit comments