diff options
author | Dimitri John Ledkov <19779+xnox@users.noreply.github.com> | 2020-11-25 17:27:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 12:27:07 -0500 |
commit | 6ee01078ae74338e0a11c1d4b13a667c01e9b26f (patch) | |
tree | adb7f7c4dd29e246cb47c511edf66be0ef6f126c /cloudinit | |
parent | 4292a47b3cefed2f6023e6007277fcaf2deb0f3e (diff) | |
download | vyos-cloud-init-6ee01078ae74338e0a11c1d4b13a667c01e9b26f.tar.gz vyos-cloud-init-6ee01078ae74338e0a11c1d4b13a667c01e9b26f.zip |
cc_apt_configure: add riscv64 as a ports arch (#687)
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/config/cc_apt_configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_apt_configure.py b/cloudinit/config/cc_apt_configure.py index 73d8719f..bb8a1278 100644 --- a/cloudinit/config/cc_apt_configure.py +++ b/cloudinit/config/cc_apt_configure.py @@ -389,7 +389,7 @@ PRIMARY_ARCH_MIRRORS = {"PRIMARY": "http://archive.ubuntu.com/ubuntu/", PORTS_MIRRORS = {"PRIMARY": "http://ports.ubuntu.com/ubuntu-ports", "SECURITY": "http://ports.ubuntu.com/ubuntu-ports"} PRIMARY_ARCHES = ['amd64', 'i386'] -PORTS_ARCHES = ['s390x', 'arm64', 'armhf', 'powerpc', 'ppc64el'] +PORTS_ARCHES = ['s390x', 'arm64', 'armhf', 'powerpc', 'ppc64el', 'riscv64'] def get_default_mirrors(arch=None, target=None): |