
Adds planet module and planet.openstack.org site. Change-Id: Id4d495889346e0a0d85d0fd05e40d451b04d21b1 Note: will not work with current openstack-planet git branch. Update for that comming
25 lines
303 B
Puppet
25 lines
303 B
Puppet
class planet {
|
|
|
|
package { 'planet-venus':
|
|
ensure => present
|
|
}
|
|
|
|
package { 'nginx':
|
|
ensure => present
|
|
}
|
|
|
|
file { '/srv/planet':
|
|
ensure => directory
|
|
}
|
|
|
|
file { '/var/lib/planet':
|
|
ensure => directory
|
|
}
|
|
|
|
service { 'nginx':
|
|
ensure => running,
|
|
hasrestart => true
|
|
}
|
|
|
|
}
|