diff options
author | hakwerk <github@hakwerk.com> | 2022-03-11 17:28:39 +0100 |
---|---|---|
committer | hakwerk <github@hakwerk.com> | 2022-03-11 17:28:39 +0100 |
commit | 2354faf934d635ff225fd55f14f59e4af0d9939b (patch) | |
tree | 302d1af325f01ec65f50e3849931a97b10413abf | |
parent | 5de37d1e2cb80d2f15a9ee337e786c6fbb047bd5 (diff) | |
download | vyos-vm-images-2354faf934d635ff225fd55f14f59e4af0d9939b.tar.gz vyos-vm-images-2354faf934d635ff225fd55f14f59e4af0d9939b.zip |
T4298: fix ansible group name and remove obsolete empty command
Ansible does not like the dash in the group name
-rw-r--r-- | hosts | 2 | ||||
-rw-r--r-- | vagrant-libvirt.yml | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -10,5 +10,5 @@ localhost [hyperv] localhost -[vagrant-libvirt] +[vagrant_libvirt] localhost diff --git a/vagrant-libvirt.yml b/vagrant-libvirt.yml index 7be24d6..954af6f 100644 --- a/vagrant-libvirt.yml +++ b/vagrant-libvirt.yml @@ -1,5 +1,5 @@ --- -- hosts: vagrant-libvirt +- hosts: vagrant_libvirt become: True gather_facts: False connection: local |