add battlestation packages task, fix group vars typo

This commit is contained in:
Carlos Sousa 2025-01-27 23:12:03 +01:00
parent 649fb58ddf
commit 12ec222cf5
4 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,10 @@
---
- hosts: all
gather_facts: true
vars_files:
- group_vars/common.yml
- group_vars/battlestation.yml
roles:
- common
- battlestation

View File

@ -4,6 +4,6 @@ software_packages_battlestation_present:
- firefox
- godot
- rclone
- rlcone-browser
- rclone-browser
- steam
- syncthing

View File

@ -0,0 +1,9 @@
- name: packages | install packages
become: true
dnf:
name: "{{ item }}"
state: latest
loop: "{{ software_packages_battlestation_present }}"
when: software_packages_battlestation_present is defined
tags: battlestation, software

View File

@ -0,0 +1,2 @@
# Install Battlestation Specific Applications
- import_tasks: applications/packages.yml