Revert "fix openvswitch requirement check"

This reverts commit be340d1bab.

The fix did not fix anything.
See comments at
https://review.openstack.org/#/c/95592/

Change-Id: I2926acf4b0a7020a7ad3237e6d03d5b78bfcb6c4
This commit is contained in:
Benedikt Trefzer 2014-05-28 21:24:46 +02:00
parent 0f7cfee155
commit 276c791442
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ def get_installed_ovs_usr_version(root_helper):
def get_installed_ovs_klm_version():
args = ["modinfo", "-F vermagic", "openvswitch"]
args = ["modinfo", "openvswitch"]
try:
cmd = utils.execute(args)
for line in cmd.split('\n'):