libvirtd and libvirt both needed. 89/35689/2
authornarindergupta <narinder.gupta@canonical.com>
Thu, 1 Jun 2017 23:53:03 +0000 (16:53 -0700)
committerNarinder Gupta <narinder.gupta@canonical.com>
Fri, 2 Jun 2017 10:52:30 +0000 (10:52 +0000)
It seems some Ubuntu system shows libvirt and some do libvirtd.
Based on when system deploys So lets try both.

Change-Id: If31a6474b4c00ff335b4fe74b6d1be00e6f36575
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
ci/03-maasdeploy.sh

index 4307088..ed9c48f 100755 (executable)
@@ -134,7 +134,11 @@ echo "... Deployment of maas Started ...."
 
 # define the pool and try to start even though its already exist.
 # For fresh install this may or may not there.
-sudo adduser $USER libvirtd
+#some system i am seeing libvirt and some have libvirtd looks like libvirt-bin is
+#keep switching so lets try both.
+
+sudo adduser $USER libvirtd || true
+sudo adduser $USER libvirt || true
 sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true
 sudo virsh pool-start default || true
 sudo virsh pool-autostart default || true