Semplificazione installazione tmux

This commit is contained in:
Emiliano Vavassori 2024-12-23 22:28:41 +01:00
parent e0b0db2d77
commit 6fedffb882
6 changed files with 5 additions and 41 deletions

View File

@ -1,7 +0,0 @@
---
- name: (alp) installing tmux
community.general.apk:
name: tmux
state: present
update_cache: true
become: true

View File

@ -1,7 +0,0 @@
---
- name: (arch) installing tmux
community.general.pacman:
name: tmux
state: present
update_cache: true
become: true

View File

@ -1,7 +0,0 @@
---
- name: (deb) installing tmux
ansible.builtin.apt:
name: tmux
state: present
update_cache: true
become: true

View File

@ -1,7 +0,0 @@
---
- name: (rHa) installing tmux
ansible.builtin.yum:
name: tmux
state: present
update_cache: true
become: true

View File

@ -1,7 +0,0 @@
---
- name: (void) installing tmux
community.general.xbps:
name: tmux
state: present
update_cache: true
become: true

View File

@ -2,12 +2,11 @@
# Managing tmux
- name: Installation
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
args:
apply:
tags:
- tmux
- tmux-install
ansible.builtin.package:
name: tmux
state: present
update_cache: true
become: true
tags:
- tmux
- tmux-install