gitignore a install steam, again

This commit is contained in:
git
2023-06-21 15:21:23 +02:00
parent f1e2e1bcf6
commit 4f8fc22666

View File

@@ -1,7 +1,26 @@
---
- name: Steam install fedora
- name: Steam install "RedHat"
become: true
ansible.builtin.dnf:
name: steam
enablerepo: rpmfusion-nonfree-steam
when: ansible_os_family == "RedHat"
when: ansible_os_family == "RedHat"
- name: Add gpg key for steam for "Debian"
become: true
ansible.builtin.apt_key:
url: http://repo.steampowered.com/steam/archive/stable/steam.gpg
state: present
- name: Add repository for steam for "Debian"
become: true
ansible.builtin.apt_repository:
repo: deb http://repo.steampowered.com/steam/ stable steam
when: ansible_os_family == "Debian"
- name: Install Steam "Debian"
become: true
ansible.builtin.apt:
name: steam-launcher
state: present