Add a lvfs role for Linux.

This commit is contained in:
Tom Alexander 2023-09-10 18:28:32 -04:00
parent a54c966ad0
commit 754c84ad89
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
5 changed files with 27 additions and 0 deletions

View File

@ -51,6 +51,7 @@
- vscode
- javascript
- launch_keyboard
- lvfs
- hosts: nat_dhcp:homeserver_nat_dhcp:mrmanager_nat_dhcp
vars:

View File

@ -0,0 +1,5 @@
- import_tasks: tasks/freebsd.yaml
when: 'os_flavor == "freebsd"'
- import_tasks: tasks/linux.yaml
when: 'os_flavor == "linux"'

View File

@ -0,0 +1,5 @@
# - name: Install packages
# package:
# name:
# - foo
# state: present

View File

@ -0,0 +1,14 @@
- name: Install packages
package:
name:
- fwupd
- gnome-firmware
state: present
- name: Enable services
systemd:
enabled: yes
name: "{{ item }}"
daemon_reload: yes
loop:
- fwupd.service

View File

@ -0,0 +1,2 @@
- import_tasks: tasks/common.yaml
# when: foo is defined