4f5bac1089
- DPDK is a userspace library for high-performance networking. - This change enable support of Open vSwitch with the DPDK accelerated netdev datapath. - This change provided binary and source support via a template-override. - This change provides an example template override file and corresponding documentation. Co-Authored-By: Mauricio Lima <mauriciolimab@gmail.com> Partial-Implements: blueprint ovs-dpdk Change-Id: I7c3a5dddeca1886fe1c7681ce8d5bebde08f3102
7 lines
148 B
Bash
7 lines
148 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p "/run/openvswitch"
|
|
if [[ ! -e "/var/lib/openvswitch/conf.db" ]]; then
|
|
ovsdb-tool create "/var/lib/openvswitch/conf.db"
|
|
fi
|