From a213a662b07b9c69a04de6bd36a7dccd1642c8cd Mon Sep 17 00:00:00 2001 From: Monocots Date: Thu, 27 Jun 2019 11:16:17 +0000 Subject: [PATCH] Install /etc/tmux.conf --- modules/rhizo_base/files/tmux.conf | 1 + modules/rhizo_base/manifests/fixes.pp | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 modules/rhizo_base/files/tmux.conf diff --git a/modules/rhizo_base/files/tmux.conf b/modules/rhizo_base/files/tmux.conf new file mode 100644 index 0000000..14f3fc4 --- /dev/null +++ b/modules/rhizo_base/files/tmux.conf @@ -0,0 +1 @@ +set-option -g mouse on diff --git a/modules/rhizo_base/manifests/fixes.pp b/modules/rhizo_base/manifests/fixes.pp index cd94c86..d6f0b91 100644 --- a/modules/rhizo_base/manifests/fixes.pp +++ b/modules/rhizo_base/manifests/fixes.pp @@ -13,6 +13,12 @@ class rhizo_base::fixes { include "rhizo_base::fixes::$operatingsystem" + + file { '/etc/tmux.conf': + ensure => present, + source => 'puppet:///modules/rhizo_base/tmux.conf', + } + } class rhizo_base::fixes::ubuntu {