Force RCCN to version 1.0.0

Remove call to install.py (for now)
Fix dependency for install.py
This commit is contained in:
Ciaby 2015-06-24 13:16:16 -05:00
parent 996c02155e
commit 56a1a54a3a

View file

@ -150,12 +150,13 @@ class rhizo_base {
} }
vcsrepo { '/var/rhizomatica': vcsrepo { '/var/rhizomatica':
ensure => latest, ensure => present,
provider => git, provider => git,
source => 'https://github.com/Rhizomatica/rccn.git', source => 'https://github.com/Rhizomatica/rccn.git',
revision => 'master', revision => '1.0.0',
require => [ File['/var/rhizomatica'], Package['git'] ], require => [ File['/var/rhizomatica'], Package['git'] ],
notify => [ Exec['install_rccn'], Exec['locale-gen'] ], notify => Exec['locale-gen'],
# [ Exec['install_rccn'],
} }
file { '/var/rhizomatica/rccn/config_values.py': file { '/var/rhizomatica/rccn/config_values.py':
@ -173,7 +174,7 @@ class rhizo_base {
exec { 'install_rccn': exec { 'install_rccn':
command => '/usr/bin/python /var/rhizomatica/rccn/install.py', command => '/usr/bin/python /var/rhizomatica/rccn/install.py',
require => [ File['/var/rhizomatica/rccn/config_values.py'], require => [ File['/var/rhizomatica/rccn/config_values.py'],
Class['rhizo_base::postgresql'], Class['riak'], Class['rhizo_base::postgresql'], Class['rhizo_base::riak'],
Package['php5'] ], Package['php5'] ],
refreshonly => true, refreshonly => true,
} }