projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Upgrade bytemark machines to chef 13
[chef.git]
/
roles
/
web.rb
1
name "web"
2
description "Role applied to all web/api servers"
3
4
default_attributes(
5
:accounts => {
6
:users => {
7
:rails => {
8
:status => :role,
9
:members => [:tomh, :grant]
10
}
11
}
12
},
13
:passenger => {
14
:pool_idle_time => 0
15
},
16
:web => {
17
:status => "online",
18
:memcached_servers => %w[rails1.ic rails2.ic rails3.ic]
19
}
20
)
21
22
run_list(
23
"role[web-db]"
24
)