From 28dd5da666c846c057a9c4ca0e3ed497e63b7123 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 31 May 2013 14:26:04 +0200 Subject: [PATCH] insert step mod_python so we stay away from broken wsgi --- system/TestPlc.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/system/TestPlc.py b/system/TestPlc.py index cda7874..f874c11 100644 --- a/system/TestPlc.py +++ b/system/TestPlc.py @@ -84,7 +84,7 @@ class TestPlc: default_steps = [ 'show', SEP, 'vs_delete','timestamp_vs','vs_create', SEP, - 'plc_install', 'plc_configure', 'plc_start', SEP, + 'plc_install', 'mod_python', 'plc_configure', 'plc_start', SEP, 'keys_fetch', 'keys_store', 'keys_clear_known_hosts', SEP, 'plcapi_urls','speed_up_slices', SEP, 'initscripts', 'sites', 'nodes', 'slices', 'nodegroups', 'leases', SEP, @@ -633,6 +633,11 @@ class TestPlc: pkgs_string=" ".join(pkgs_list) return self.yum_install (pkgs_list) + ### + def mod_python(self): + """yum install mod_python, useful on f18 and above so as to avoid broken wsgi""" + return self.yum_install ( [ 'mod_python' ] ) + ### def plc_configure(self): "run plc-config-tty" -- 2.43.0