projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Manage OSMF wiki
[chef.git]
/
roles
/
foundation.rb
1
name "foundation"
2
description "Role applied to all OSMF servers"
3
4
default_attributes(
5
:apache => {
6
:mpm => "prefork",
7
:timeout => 60,
8
:keepalive => false
9
},
10
:apt => {
11
:sources => [ "passenger" ]
12
},
13
:memcached => {
14
:memory_limit => 400,
15
:chunk_growth_factor => 1.05,
16
:min_item_size => 5
17
}
18
)
19
20
run_list(
21
"role[crm]",
22
"recipe[foundation::wiki]"
23
)