b6db5853a9
Initial smooshing of existing snaps together. Contains all the basic openstack components that are snapped, plus libvirt/qemu parts borrowed from multipass.
8 lines
285 B
Bash
Executable File
8 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -f $SNAP_COMMON/libvirt/libvirtd.conf ]; then
|
|
install -D $SNAP/var/snap/microstack/common/libvirt/libvirtd.conf $SNAP_COMMON/libvirt/libvirtd.conf
|
|
sed -i 's/unix_sock_group = "libvirtd"/unix_sock_group = "sudo"/' $SNAP_COMMON/libvirt/libvirtd.conf
|
|
fi
|