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