fuel-library/deployment/puppet/cluster/manifests/neutron.pp
Vladimir Kuklin 710553c1cc All the work done for fuel-library packaging
1) Package fuel library into three different
packages:
RPM: fuel-library6.1
ALL: fuel-ha-utils, fuel-misc

2) Install packages onto slave nodes
implements blueprint: package-fuel-components

Change-Id: Ie759857fb94db9aa94aaeaeda2c6ab5bb159cc9e
2015-05-15 02:44:53 +03:00

29 lines
591 B
Puppet

# not a doc string
class cluster::neutron () {
Package['pacemaker'] ->
File<| title == 'ocf-mirantis-path' |> ->
Package['neutron'] ->
# file {'q-agent-cleanup.py':
# path => '/usr/bin/q-agent-cleanup.py',
# mode => '0755',
# owner => root,
# group => root,
# source => "puppet:///modules/cluster/q-agent-cleanup.py",
#} ->
file {'/var/cache/neutron':
ensure => directory,
path => '/var/cache/neutron',
mode => '0755',
owner => neutron,
group => neutron,
}
if !defined(Package['lsof']) {
package { 'lsof': }
}
}