projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove date from nominatim fail2ban regex
[chef.git]
/
roles
/
nominatim-slave.rb
1
name "nominatim-slave"
2
description "Role applied to all slave nominatim servers"
3
4
default_attributes(
5
:postgresql => {
6
:settings => {
7
:defaults => {
8
:hot_standby => "on",
9
:hot_standby_feedback => "on",
10
:standby_mode => "on"
11
}
12
}
13
},
14
:nominatim => {
15
:state => "slave",
16
:enable_backup => false
17
}
18
)
19
20
run_list(
21
"recipe[nominatim::slave]",
22
"role[nominatim-base]"
23
)