
This reverts commit ce5e82e319
.
MicroStack cannot currently install due to a missing ovs-related
library. This is possibly due to recent changes in spacraft, or
possibly due to the workarounds for those changes. Regardless, it
appears that backing out the DPDK changes gets us back to a state
where we can install.
Partial-Bug: 1862911
Change-Id: I060c1a0095470639f9158cb9e9ebe8281a65a678
17 lines
365 B
Bash
Executable File
17 lines
365 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export OVS_LOGDIR=${SNAP_COMMON}/log/openvswitch
|
|
export OVS_RUNDIR=${SNAP_COMMON}/run/openvswitch
|
|
export OVS_SYSCONFDIR=${SNAP_COMMON}/etc
|
|
export OVS_PKGDATADIR=${SNAP}/share/openvswitch
|
|
export OVS_BINDIR=${SNAP}/bin
|
|
export OVS_SBINDIR=${SNAP}/sbin
|
|
|
|
mkdir -p ${OVS_LOGDIR}
|
|
mkdir -p ${OVS_RUNDIR}
|
|
mkdir -p ${OVS_SYSCONFDIR}/openvswitch
|
|
|
|
exec $@
|