def check_arp_responder():
    result = checks.arp_responder_supported()
    if not result:
        LOG.error(_LE('Check for Open vSwitch ARP responder support failed. '
                      'Please ensure that the version of openvswitch '
                      'being used has ARP flows support.'))
    return result
Example #2
0
def check_arp_responder():
    result = checks.arp_responder_supported()
    if not result:
        LOG.error('Check for Open vSwitch ARP responder support failed. '
                  'Please ensure that the version of openvswitch '
                  'being used has ARP flows support.')
    return result
Example #3
0
def check_arp_responder():
    result = checks.arp_responder_supported(
        root_helper=cfg.CONF.AGENT.root_helper)
    if not result:
        LOG.error(_LE('Check for Open vSwitch ARP responder support failed. '
                      'Please ensure that the version of openvswitch '
                      'being used has ARP flows support.'))
    return result
Example #4
0
def check_arp_responder():
    result = checks.arp_responder_supported(root_helper=cfg.CONF.AGENT.root_helper)
    if not result:
        LOG.error(
            _LE(
                "Check for Open vSwitch ARP responder support failed. "
                "Please ensure that the version of openvswitch "
                "being used has ARP flows support."
            )
        )
    return result
Example #5
0
 def test_arp_responder_runs(self):
     checks.arp_responder_supported(self.root_helper)
Example #6
0
 def test_arp_responder_runs(self):
     checks.arp_responder_supported()
Example #7
0
 def test_arp_responder_runs(self):
     checks.arp_responder_supported(self.root_helper)
Example #8
0
 def test_arp_responder_runs(self):
     checks.arp_responder_supported()