summaryrefslogtreecommitdiffstats
path: root/roles/steam/tasks/install-archlinux.yml
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2026-02-18 19:19:42 +0100
committerAhmed AbdelHalim <[email protected]>2026-02-18 19:19:42 +0100
commitbb4ce6b5f53c4a299ab178f50900afce18edd83e (patch)
treebb0ae637754768f054df38595016c3e01cbaddab /roles/steam/tasks/install-archlinux.yml
parent7a18dc913531ea8626ce36380669b78c3bc2e94b (diff)
Add the role to install steam on archlinux
Diffstat (limited to 'roles/steam/tasks/install-archlinux.yml')
-rw-r--r--roles/steam/tasks/install-archlinux.yml10
1 files changed, 10 insertions, 0 deletions
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"