1
0
mirror of https://gitlab.com/dbrw/ansible-setup.git synced 2025-08-04 17:35:41 +07:00

update virtualization tasks

This commit is contained in:
dbrw 2022-07-08 11:59:56 +07:00
parent d97d8c67e6
commit 08e696768a
Signed by: dhimas
GPG Key ID: 8D5D880EB08F1544
3 changed files with 10 additions and 4 deletions

View File

@ -8,19 +8,19 @@
# bold_font Operator Mono Thick # bold_font Operator Mono Thick
# bold_italic_font Operator Mono Medium # bold_italic_font Operator Mono Medium
# font_family Input Mono # font_family Input Mono
font_family Fantasque Sans Mono font_family Iosevka
italic_font auto italic_font auto
bold_font auto bold_font auto
bold_italic_font auto bold_italic_font auto
# Font size (in pts) # Font size (in pts)
font_size 12.0 font_size 11.0
background_opacity 1 background_opacity 1
dynamic_background_opacity no dynamic_background_opacity no
tab_bar_style powerline tab_bar_style powerline
tab_bar_min_tabs 1 tab_bar_min_tabs 2
# The cursor shape can be one of (block, beam, underline) # The cursor shape can be one of (block, beam, underline)
cursor_shape block cursor_shape block

View File

@ -24,11 +24,17 @@
append: True append: True
user: "{{ username }}" user: "{{ username }}"
- name: Enable libvirt service
ansible.builtin.systemd:
name: libvirtd
state: started
enabled: yes
- name: Define a new network for virtualization - name: Define a new network for virtualization
community.libvirt.virt_net: community.libvirt.virt_net:
command: define command: define
name: jungle name: jungle
xml: '{{ lookup("template", "libvirt/jungle.xml") }}' xml: '{{ lookup("template", "libvirt/jungle.xml.j2") }}'
- name: Ensure virtualization network active - name: Ensure virtualization network active
community.libvirt.virt_net: community.libvirt.virt_net: