710553c1cc
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
29 lines
591 B
Puppet
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': }
|
|
}
|
|
}
|