Skip to content
Snippets Groups Projects
Commit 115b67b8 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

feat: rollout different tmux configs for RHEL 7 and 8

parent 3655e491
No related branches found
No related tags found
No related merge requests found
Pipeline #6434 passed
......@@ -11,7 +11,10 @@
set -g mouse on
set -g history-limit 10000
when:
(ansible_os_family == "Debian")
( ansible_os_family == "Debian" ) or
(( ansible_os_family == 'RedHat' ) and
( ansible_distribution_major_version == "8" ))
- name: Enable mouse mode in tmux, increase scrollback buffer to 10.000 (older OSses)
ansible.builtin.blockinfile:
......@@ -34,5 +37,5 @@
set -g mode-mouse on
set -g history-limit 10000
when:
ansible_os_family == "RedHat"
when: ( ansible_os_family == 'RedHat' ) and
( ansible_distribution_major_version == "7" )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment