Esempio n. 1
0
def check_iproute2_vxlan():
    result = checks.iproute2_vxlan_supported()
    if not result:
        LOG.error(
            _LE('Check for iproute2 VXLAN support failed. Please ensure '
                'that the iproute2 has VXLAN support.'))
    return result
Esempio n. 2
0
def check_iproute2_vxlan():
    result = checks.iproute2_vxlan_supported(
                root_helper=cfg.CONF.AGENT.root_helper)
    if not result:
        LOG.error(_LE('Check for iproute2 VXLAN support failed. Please ensure '
                      'that the iproute2 has VXLAN support.'))
    return result
Esempio n. 3
0
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported()
Esempio n. 4
0
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported()
Esempio n. 5
0
def check_iproute2_vxlan():
    result = checks.iproute2_vxlan_supported()
    if not result:
        LOG.error('Check for iproute2 VXLAN support failed. Please ensure '
                  'that the iproute2 has VXLAN support.')
    return result
Esempio n. 6
0
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported(self.root_helper)
Esempio n. 7
0
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported(self.root_helper)