diff options
Diffstat (limited to 'ci/03-maasdeploy.sh')
-rwxr-xr-x | ci/03-maasdeploy.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/03-maasdeploy.sh b/ci/03-maasdeploy.sh index e5e203e7..79d1eb3d 100755 --- a/ci/03-maasdeploy.sh +++ b/ci/03-maasdeploy.sh @@ -130,7 +130,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 |