joerc is slightly different in versions 4.4/4.6

This commit is contained in:
Keith Whyte 2020-04-17 04:52:51 +02:00
parent 7d452b0f0c
commit c506d47b76
3 changed files with 1323 additions and 5 deletions

File diff suppressed because it is too large Load diff

View file

@ -278,11 +278,21 @@ schedule { 'repo':
content => template('rhizo_base/rccn-functions.sh.erb'), content => template('rhizo_base/rccn-functions.sh.erb'),
} }
if ($lsbdistcodename == 'buster') {
file { '/etc/joe/joerc': file { '/etc/joe/joerc':
ensure => present, ensure => present,
source => 'puppet:///modules/rhizo_base/joerc', source => 'puppet:///modules/rhizo_base/joerc.4.6',
require => Package['joe'], require => Package['joe'],
} }
}
if ($lsbdistcodename == 'stretch') {
file { '/etc/joe/joerc':
ensure => present,
source => 'puppet:///modules/rhizo_base/joerc.4.4',
require => Package['joe'],
}
}
file { '/var/rhizomatica': file { '/var/rhizomatica':
ensure => directory, ensure => directory,