コード例 #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
コード例 #2
0
ファイル: sanity_check.py プロジェクト: afori/neutron
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
コード例 #3
0
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported()
コード例 #4
0
ファイル: test_sanity.py プロジェクト: CloudA/neutron
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported()
コード例 #5
0
ファイル: sanity_check.py プロジェクト: eayunstack/neutron
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
コード例 #6
0
ファイル: test_sanity.py プロジェクト: gampel/neutron
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported(self.root_helper)
コード例 #7
0
 def test_iproute2_vxlan_support_runs(self):
     checks.iproute2_vxlan_supported(self.root_helper)