Add support for setup.py installing the prerequisite packages on Fedora 24.
It appears that the same list of Fedora 23 works also on Fedora 24.

Signed-off-by: Nadav Har'El <n...@scylladb.com>
---
 scripts/setup.py | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/scripts/setup.py b/scripts/setup.py
index c78166c..f728047 100755
--- a/scripts/setup.py
+++ b/scripts/setup.py
@@ -70,7 +70,14 @@ class Fedora(object):
         ec2_post_install = None
         version = '23'
 
-    versions = [Fedora_19, Fedora_20, Fedora_21, Fedora_22, Fedora_23]
+    class Fedora_24(object):
+        packages = ['java-1.8.0-openjdk', 'python2-requests']
+        ec2_packages = []
+        test_packages = []
+        ec2_post_install = None
+        version = '24'
+
+    versions = [Fedora_19, Fedora_20, Fedora_21, Fedora_22, Fedora_23, 
Fedora_24]
 
 class RHELbased(Fedora):
     name = ['Scientific Linux', 'NauLinux', 'CentOS Linux',
-- 
2.7.4

-- 
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 osv-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to