File: macvtap_agent

package info (click to toggle)
neutron 2%3A27.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,004 kB
  • sloc: python: 296,384; sh: 1,507; makefile: 292; ruby: 35; sql: 19
file content (50 lines) | stat: -rw-r--r-- 941 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Neutron Macvtap L2 agent
# ------------------------

# Save trace setting
_XTRACE_NEUTRON_MACVTAP=$(set +o | grep xtrace)
set +o xtrace

function is_neutron_ovs_base_plugin {
    # macvtap doesn't use OVS
    return 1
}

function neutron_plugin_create_nova_conf {
    :
}

function neutron_plugin_install_agent_packages {
    :
}

function neutron_plugin_configure_debug_command {
    :
}

function neutron_plugin_configure_dhcp_agent {
    :
}

function neutron_plugin_configure_l3_agent {
    :
}

function neutron_plugin_configure_plugin_agent {
    # Only the NooPFirewallDriver is supported. If not set, the agent will
    # terminate.
    iniset /$NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver noop
    AGENT_BINARY="$NEUTRON_BIN_DIR/neutron-macvtap-agent"
}

function neutron_plugin_setup_interface_driver {
    :
}

function neutron_plugin_check_adv_test_requirements {
    :
}

# Restore xtrace
$_XTRACE_NEUTRON_MACVTAP