workstation/roles/freebsd/tasks/qemu-guest.yml

35 lines
1.2 KiB
YAML
Raw Normal View History

2022-09-21 18:31:24 +00:00
---
2023-01-21 19:42:51 +00:00
# Copyright 2021-2023 Anthony Perkins
2022-09-21 18:31:24 +00:00
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Install QEMU packages
become: true
community.general.pkgng:
# utouch-kmod and xf86-input-evdev are needed for mouse in QEMU/KVM.
2023-09-25 10:07:00 +00:00
# xf86-video-scfb is needed for video acceleration and Gnome.
name: utouch-kmod,xf86-input-evdev,xf86-video-scfb
2022-09-21 18:31:24 +00:00
state: present
2022-09-23 09:49:22 +00:00
- name: Set xorg screen
become: true
ansible.builtin.copy:
src: screen-qemu.conf
dest: /usr/local/etc/X11/xorg.conf.d/screen-qemu.conf
2022-09-21 18:31:24 +00:00
- name: Enable utouch module
become: true
ansible.builtin.lineinfile:
path: /boot/loader.conf.d/utouch.conf
regexp: '^utouch_load=.*'
line: 'utouch_load="YES"'
2023-08-19 19:46:14 +00:00
create: yes