Exemplo 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
Exemplo 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
Exemplo 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
Exemplo 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
Exemplo n.º 5
0
 def test_vf_management_runs(self):
     checks.vf_management_supported(self.root_helper)
Exemplo n.º 6
0
 def test_vf_management_runs(self):
     checks.vf_management_supported()
Exemplo n.º 7
0
 def test_vf_management_runs(self):
     checks.vf_management_supported()
Exemplo n.º 8
0
 def test_vf_management_runs(self):
     checks.vf_management_supported(self.root_helper)