From 56a1a54a3a7fd336f597a0a8865a19fed81422bf Mon Sep 17 00:00:00 2001 From: Ciaby Date: Wed, 24 Jun 2015 13:16:16 -0500 Subject: [PATCH] Force RCCN to version 1.0.0 Remove call to install.py (for now) Fix dependency for install.py --- modules/rhizo_base/manifests/init.pp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/rhizo_base/manifests/init.pp b/modules/rhizo_base/manifests/init.pp index ea4bbff..95abc9e 100644 --- a/modules/rhizo_base/manifests/init.pp +++ b/modules/rhizo_base/manifests/init.pp @@ -150,12 +150,13 @@ class rhizo_base { } vcsrepo { '/var/rhizomatica': - ensure => latest, + ensure => present, provider => git, source => 'https://github.com/Rhizomatica/rccn.git', - revision => 'master', + revision => '1.0.0', 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': @@ -173,7 +174,7 @@ class rhizo_base { exec { 'install_rccn': command => '/usr/bin/python /var/rhizomatica/rccn/install.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'] ], refreshonly => true, }