Remove the automatic git pull.
This commit is contained in:
parent
ef3f038773
commit
db8e6ebb4b
1 changed files with 13 additions and 12 deletions
|
@ -133,25 +133,25 @@ class rhizomatica_base_system {
|
||||||
ensure => present,
|
ensure => present,
|
||||||
}
|
}
|
||||||
|
|
||||||
vcsrepo { '/var/rhizomatica':
|
# vcsrepo { '/var/rhizomatica':
|
||||||
ensure => latest,
|
# ensure => latest,
|
||||||
provider => git,
|
# provider => git,
|
||||||
source => 'https://github.com/Rhizomatica/rccn.git',
|
# source => 'https://github.com/Rhizomatica/rccn.git',
|
||||||
revision => 'master',
|
# revision => 'master',
|
||||||
require => [ File['/var/rhizomatica'], Package['git'] ],
|
# require => [ File['/var/rhizomatica'], Package['git'] ],
|
||||||
notify => [ Exec['install_rccn'], Exec['locale-gen'] ],
|
# notify => [ Exec['install_rccn'], Exec['locale-gen'] ],
|
||||||
}
|
# }
|
||||||
|
|
||||||
file { '/var/rhizomatica/rccn/config_values.py':
|
file { '/var/rhizomatica/rccn/config_values.py':
|
||||||
ensure => present,
|
ensure => present,
|
||||||
content => template('rhizomatica_base_system/config_values.py.erb'),
|
content => template('rhizomatica_base_system/config_values.py.erb'),
|
||||||
require => Vcsrepo['/var/rhizomatica'],
|
# require => Vcsrepo['/var/rhizomatica'],
|
||||||
}
|
}
|
||||||
|
|
||||||
file { '/var/rhizomatica/rai/include/database.php':
|
file { '/var/rhizomatica/rai/include/database.php':
|
||||||
ensure => present,
|
ensure => present,
|
||||||
content => template('rhizomatica_base_system/database.php.erb'),
|
content => template('rhizomatica_base_system/database.php.erb'),
|
||||||
require => Vcsrepo['/var/rhizomatica'],
|
# require => Vcsrepo['/var/rhizomatica'],
|
||||||
}
|
}
|
||||||
|
|
||||||
exec { 'install_rccn':
|
exec { 'install_rccn':
|
||||||
|
@ -177,13 +177,14 @@ class rhizomatica_base_system {
|
||||||
file { '/var/www/html/rai':
|
file { '/var/www/html/rai':
|
||||||
ensure => link,
|
ensure => link,
|
||||||
target => '/var/rhizomatica/rai',
|
target => '/var/rhizomatica/rai',
|
||||||
require => [ Vcsrepo['/var/rhizomatica'], Package['apache2'] ],
|
require => Package['apache2'],
|
||||||
|
# [ Vcsrepo['/var/rhizomatica'], ],
|
||||||
}
|
}
|
||||||
|
|
||||||
file { '/var/www/html/rai/graphs':
|
file { '/var/www/html/rai/graphs':
|
||||||
ensure => link,
|
ensure => link,
|
||||||
target => '/var/rhizomatica/rrd/graphs',
|
target => '/var/rhizomatica/rrd/graphs',
|
||||||
require => Vcsrepo['/var/rhizomatica'],
|
# require => Vcsrepo['/var/rhizomatica'],
|
||||||
}
|
}
|
||||||
|
|
||||||
#PostgreSQL server
|
#PostgreSQL server
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue