ansible-role--tmux/tasks/main.yml

15 lines
280 B
YAML
Raw Permalink Normal View History

2024-07-12 12:47:02 +00:00
---
- name: Installs tmux
apt: >
pkg=tmux
state=present
- name: Adds .tmux.conf for all accounts for detected version
template:
src: tmux.conf.j2
dest: "~{{ item }}/.tmux.conf"
owner: "{{ item }}"
group: "{{ item }}"
with_items: "{{tmux_users}}"