Semplificazione installazione tmux
This commit is contained in:
parent
e0b0db2d77
commit
6fedffb882
@ -1,7 +0,0 @@
|
||||
---
|
||||
- name: (alp) installing tmux
|
||||
community.general.apk:
|
||||
name: tmux
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
- name: (arch) installing tmux
|
||||
community.general.pacman:
|
||||
name: tmux
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
- name: (deb) installing tmux
|
||||
ansible.builtin.apt:
|
||||
name: tmux
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
- name: (rHa) installing tmux
|
||||
ansible.builtin.yum:
|
||||
name: tmux
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
- name: (void) installing tmux
|
||||
community.general.xbps:
|
||||
name: tmux
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user