Esempio n. 1
0
def check_vf_management():
    result = checks.vf_management_supported()
    if not result:
        LOG.error(_LE('Check for VF management support failed. '
                      'Please ensure that the version of ip link '
                      'being used has VF support.'))
    return result
Esempio n. 2
0
def check_vf_management():
    result = checks.vf_management_supported()
    if not result:
        LOG.error('Check for VF management support failed. '
                  'Please ensure that the version of ip link '
                  'being used has VF support.')
    return result
Esempio n. 3
0
def check_vf_management():
    result = checks.vf_management_supported(
        root_helper=cfg.CONF.AGENT.root_helper)
    if not result:
        LOG.error(_LE('Check for VF management support failed. '
                      'Please ensure that the version of ip link '
                      'being used has VF support.'))
    return result
Esempio n. 4
0
def check_vf_management():
    result = checks.vf_management_supported(root_helper=cfg.CONF.AGENT.root_helper)
    if not result:
        LOG.error(
            _LE(
                "Check for VF management support failed. "
                "Please ensure that the version of ip link "
                "being used has VF support."
            )
        )
    return result
Esempio n. 5
0
 def test_vf_management_runs(self):
     checks.vf_management_supported(self.root_helper)
Esempio n. 6
0
 def test_vf_management_runs(self):
     checks.vf_management_supported()
Esempio n. 7
0
 def test_vf_management_runs(self):
     checks.vf_management_supported()
Esempio n. 8
0
 def test_vf_management_runs(self):
     checks.vf_management_supported(self.root_helper)