From: Thierry Parmentelat Date: Fri, 31 May 2013 12:26:04 +0000 (+0200) Subject: insert step mod_python so we stay away from broken wsgi X-Git-Tag: tests-5.2-4~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=28dd5da666c846c057a9c4ca0e3ed497e63b7123;p=tests.git insert step mod_python so we stay away from broken wsgi --- 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"