blob: 932d16ada7715ebd7982fc3018f0a417a9c62870 (
plain)
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
|
class epoll {
include apache::mod_fcgid
package { 'Epoll':
ensure => installed
}
# add a apache vhost
file { "epoll.$domain.conf":
path => "/etc/httpd/conf/vhosts.d/$name.$domain.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template("epoll/epoll_vhost.conf")
}
$password = extlookup("epoll_password")
file { "epoll.yml":
path => "/etc/epoll.yml",
ensure => "present",
owner => apache,
group => apache,
mode => 600,
content => template("epoll/epoll.yml")
}
}
|