From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
setup.py: support Ubuntu 20.04 Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/scripts/setup.py b/scripts/setup.py --- a/scripts/setup.py +++ b/scripts/setup.py @@ -255,6 +255,13 @@ class Ubuntu(object): test_packages = ['libssl-dev', 'zip'] ec2_post_install = None + class Ubuntu_20_04(object): + packages = ['bridge-utils', 'libvirt-daemon-system', 'libvirt-clients'] + ec2_packages = ['ec2-api-tools', 'awscli'] + test_packages = [] + ec2_post_install = None + version = '20.04' + class Ubuntu_19_10(object): packages = ['bridge-utils', 'libvirt-daemon-system', 'libvirt-clients'] ec2_packages = ['ec2-api-tools', 'awscli'] @@ -297,7 +304,7 @@ class Ubuntu_16_04(object): ec2_post_install = None version = '16.04' - versions = [Ubuntu_19_10, Ubuntu_19_04, Ubuntu_18_10, Ubuntu_18_04, Ubuntu_17_04, Ubuntu_16_04] + versions = [Ubuntu_20_04, Ubuntu_19_10, Ubuntu_19_04, Ubuntu_18_10, Ubuntu_18_04, Ubuntu_17_04, Ubuntu_16_04] class LinuxMint(Ubuntu): name = 'LinuxMint' -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/0000000000001cab0105a58039aa%40google.com.
