From 7d7454db67c5e51308d482fbc1d369bef6cbb711 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Wed, 18 Feb 2026 19:19:42 +0100 Subject: Add the role to install steam on archlinux --- roles/steam/tasks/install-archlinux.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 roles/steam/tasks/install-archlinux.yml (limited to 'roles/steam/tasks/install-archlinux.yml') diff --git a/roles/steam/tasks/install-archlinux.yml b/roles/steam/tasks/install-archlinux.yml new file mode 100644 index 00000000..0ac25b4b --- /dev/null +++ b/roles/steam/tasks/install-archlinux.yml @@ -0,0 +1,10 @@ +--- +- name: "Ensure multilib is enabled" + ansible.builtin.include_role: + name: "multilib" + +- name: "Ensure steam is installed" + become: true + ansible.builtin.package: + name: "steam" + state: "present" -- cgit v1.2.3