Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ apps:
- dm-multipath
- nvme-control
- iscsi-initiator
- mdevctl-config
# Make sure KillMode=process is set in the resulting systemd unit instead of
# the default KillMode=control-group to avoid the situation where stopping
# libvirtd causes the forced power off scenario for all VMs; it also affects
Expand Down Expand Up @@ -516,7 +517,7 @@ parts:
- ninja-build
autotools-configure-parameters:
- --enable-system
- --target-list=x86_64-softmmu,aarch64-softmmu
- --target-list=x86_64-softmmu,aarch64-softmmu,s390x-softmmu
- --disable-install-blobs
- --disable-user
- --disable-linux-user
Expand Down Expand Up @@ -749,6 +750,10 @@ parts:
if [ -f $CRAFT_PART_INSTALL/usr/lib/openvswitch-switch-dpdk/ovs-vswitchd-dpdk ]; then
mv $CRAFT_PART_INSTALL/usr/lib/openvswitch-switch-dpdk/ovs-vswitchd-dpdk $CRAFT_PART_INSTALL/usr/sbin/ovs-vswitchd
fi
if [ ! -e $CRAFT_PART_INSTALL/usr/sbin/ovs-vswitchd ] && \
[ -x $CRAFT_PART_INSTALL/usr/lib/openvswitch-switch/ovs-vswitchd ]; then
ln -s ../lib/openvswitch-switch/ovs-vswitchd $CRAFT_PART_INSTALL/usr/sbin/ovs-vswitchd
fi

apache2-webdav:
plugin: nil
Expand Down Expand Up @@ -969,6 +974,10 @@ hooks:
- microstack-support

plugs:
mdevctl-config:
interface: system-files
read:
- /etc/mdevctl.d
epa-info:
interface: content
content: epa-info
Expand Down
Loading