Add joe editor to system and configure to place backups in /tmp

This commit is contained in:
Keith Whyte 2018-02-23 08:51:01 +00:00
parent ecc5b9ac70
commit c1033cfa1f
3 changed files with 1356 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -202,6 +202,12 @@ class rhizo_base {
content => template('rhizo_base/rccn-functions.sh.erb'),
}
file { '/etc/joe/joerc':
ensure => present,
source => 'puppet:///modules/rhizo_base/joerc',
require => Package['joe'],
}
file { '/var/rhizomatica':
ensure => directory,
}

View file

@ -23,7 +23,7 @@ class rhizo_base::packages::common {
package { ['mosh', 'git', 'openvpn', 'lm-sensors', 'runit', 'sqlite3',
'libffi-dev', 'apcupsd', 'expect', 'gawk', 'swig', 'g++',
'libcdk5' , 'sngrep', 'rrdtool', 'dnsmasq',
'libcdk5' , 'sngrep', 'rrdtool', 'dnsmasq', 'joe',
'python-unidecode', 'python-dateutil', 'python-yaml', 'python-formencode',
'python-smpplib', 'python-psycopg2', 'python-pysqlite2' ]:
ensure => installed,