paulbsd-salt/states/tmux/init.sls

15 lines
288 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
{%- from "tmux/map.jinja" import tmux with context %}
tmux-pkg:
pkg.latest:
- name: tmux
tmux-config:
file.managed:
- name: /etc/tmux.conf
- source: salt://tmux/tmux.conf.j2
- user: root
- group: root
- template: jinja
- require:
- pkg: tmux-pkg