1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'manifests/server.pp', line 1
class pulp::server($ensure = 'present', $conf_template = '') {
if $ensure == 'absent' {
package { [ 'pulp-server',
'pulp-puppet-plugins',
'pulp-rpm-plugins',
'pulp-selinux']:
ensure => 'absent'
}
file { '/etc/pulp/server.conf':
ensure => 'absent'
}
service { [ 'mongod', 'qpidd' ]:
ensure => 'stopped'
}
} else {
package { [ 'pulp-server',
'pulp-puppet-plugins',
'pulp-rpm-plugins',
'pulp-selinux']:
ensure => $ensure,
notify => Exec['setup-pulp-db'],
before => [Service['mongod'], Service['qpidd']];
'httpd':
ensure => 'present'
}
if $conf_template == '' {
$template = 'pulp/server.conf.erb'
} else {
$template = $conf_template
}
file { '/etc/pulp/server.conf':
owner => 'root',
group => 'root',
ensure => 'present',
mode => 644,
content => template($template),
require => Package['pulp-server']
}
service { [ 'mongod', 'qpidd']:
ensure => 'running',
require => File['/etc/pulp/server.conf']
}
# The mongod service script doesn't block, so we'll keep trying
# this for up to two minutes
exec { 'setup-pulp-db':
command => '/usr/bin/pulp-manage-db',
refreshonly => true,
tries => 12,
try_sleep => 10,
require => [Service['mongod'], Service['qpidd']]
}
service { 'httpd':
ensure => 'running',
subscribe => Exec['setup-pulp-db']
}
}
}
|