Create and use libvirtd group for package install

For the nova-kvm package install, we need to create the libvirtd group
and add the nova user to the group. This is because the element now uses
its own libvirtd.conf which is configured to use the libvirtd group.

Change-Id: Ic345b76a17ff75b468da8a493c6bf856d730a586
This commit is contained in:
James Slagle
2014-03-24 11:58:16 -04:00
parent e076fd3582
commit 811e6c64ac

View File

@@ -3,3 +3,9 @@
set -eux
install-packages openstack-nova-novncproxy
if ! getent group libvirtd; then
groupadd libvirtd
fi
usermod -a -G libvirtd nova