summaryrefslogtreecommitdiffstats
path: root/libvirt/tasks/main.yml
diff options
context:
space:
mode:
authorManuel Bentele2021-06-25 14:49:12 +0200
committerManuel Bentele2021-06-25 14:49:12 +0200
commitfda0955acf0098c5177ad052c46523a76af655a9 (patch)
tree554d88a7a146a92693579de4733d1efee23ce9fb /libvirt/tasks/main.yml
parentREADME.md: added note on the background mess :) (diff)
downloadansible-bwlp-fda0955acf0098c5177ad052c46523a76af655a9.tar.gz
ansible-bwlp-fda0955acf0098c5177ad052c46523a76af655a9.tar.xz
ansible-bwlp-fda0955acf0098c5177ad052c46523a76af655a9.zip
[mltk-qemu] Add build of 'qemu' mltk target
Diffstat (limited to 'libvirt/tasks/main.yml')
-rw-r--r--libvirt/tasks/main.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/libvirt/tasks/main.yml b/libvirt/tasks/main.yml
deleted file mode 100644
index 55dbeca..0000000
--- a/libvirt/tasks/main.yml
+++ /dev/null
@@ -1,37 +0,0 @@
----
-- name: libvirt | Install packages for libvirt
- apt:
- name:
- - openjdk-8-jre-headless
- - libvirt-daemon-system
- - libvirt-daemon
- - libvirt-clients
- - virt-viewer
- - dnsmasq
- state: present
- install_recommends: no
-
-- name: libvirt | Remove default network configuration
- file:
- path: "{{ item }}"
- state: absent
- with_items:
- - /etc/libvirt/qemu/networks/default.xml
- - /etc/libvirt/qemu/networks/autostart/default.xml
-
-- name: libvirt | Remove GNOME from accessibility.properties
- replace:
- path: /etc/java-8-openjdk/accessibility.properties
- regexp: '^(assistive_technologies=.*)'
- replace: '#\1'
-
-- name: livirt | Disable systemd services
- systemd:
- name: "{{ item }}"
- enabled: no
- with_items:
- - libvirtd
- - libvirtd.socket
- - libvirt-guests
- - dnsmasq
- ignore_errors: yes