Move riak test to init.pp

This commit is contained in:
Wile E. Coyote 2017-05-05 08:08:06 +00:00
parent 389e2e21d3
commit 870b87cf40
2 changed files with 23 additions and 19 deletions

View file

@ -153,9 +153,6 @@ class rhizo_base {
include rhizo_base::fixes include rhizo_base::fixes
include rhizo_base::apt include rhizo_base::apt
include rhizo_base::postgresql include rhizo_base::postgresql
if $operatingsystem != 'Debian' {
include rhizo_base::riak
}
include rhizo_base::packages include rhizo_base::packages
include rhizo_base::freeswitch include rhizo_base::freeswitch
include rhizo_base::runit include rhizo_base::runit
@ -168,6 +165,24 @@ class rhizo_base {
} }
include rhizo_base::kiwi include rhizo_base::kiwi
if $vpn_ip_address == $riak_ip_address {
if $operatingsystem != 'Debian' {
file { '/etc/init.d/riak':
ensure => file,
owner => 'root',
group => 'root',
mode => '0755',
source => 'puppet:///modules/rhizo_base/etc/init.d/riak',
require => Class['::riak'],
notify => Exec['insserv'],
}
include rhizo_base::riak
}
} else {
file { '/etc/init.d/riak':
ensure => absent,
}
}
#Rizhomatica scripts #Rizhomatica scripts
file { '/home/rhizomatica/bin': file { '/home/rhizomatica/bin':
@ -182,6 +197,11 @@ class rhizo_base {
content => template('rhizo_base/vars.sh.erb'), content => template('rhizo_base/vars.sh.erb'),
} }
file { "/etc/profile.d/rccn-functions.sh":
ensure => present,
content => template('rhizo_base/rccn-functions.sh.erb'),
}
file { '/var/rhizomatica': file { '/var/rhizomatica':
ensure => directory, ensure => directory,
} }

View file

@ -71,22 +71,6 @@ class rhizo_base::riak {
} }
} }
if $vpn_ip_address == $riak_ip_address {
file { '/etc/init.d/riak':
ensure => file,
owner => 'root',
group => 'root',
mode => '0755',
source => 'puppet:///modules/rhizo_base/etc/init.d/riak',
require => Class['::riak'],
notify => Exec['insserv'],
}
} else {
file { '/etc/init.d/riak':
ensure => absent,
}
}
exec { 'insserv': exec { 'insserv':
command => '/usr/lib/insserv/insserv', command => '/usr/lib/insserv/insserv',
refreshonly => true, refreshonly => true,