projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a2badbc1ae8a291f21bd673936ef41dcab07b3c9
[chef.git]
/
roles
/
piwik.rb
1
name "piwik"
2
description "Role applied to all Piwik servers"
3
4
default_attributes(
5
:apache => {
6
:mpm => "prefork"
7
},
8
:mysql => {
9
:settings => {
10
:mysqld => {
11
:innodb_buffer_pool_instances => "8",
12
:innodb_buffer_pool_size => "16GB",
13
:innodb_flush_log_at_trx_commit => "2"
14
}
15
}
16
}
17
)
18
19
run_list(
20
"recipe[piwik]"
21
)