]> git.openstreetmap.org Git - chef.git/blob - roles/nominatim-master.rb
Switch pummelzacken to postgres 9.5
[chef.git] / roles / nominatim-master.rb
1 name "nominatim-master"
2 description "Role applied to the master nominatim server"
3
4 default_attributes(
5   :postgresql => {
6     :settings => {
7       :defaults => {
8         :wal_level => "hot_standby",
9         :archive_mode => "on",
10         :archive_command => "/bin/cp %p /data/postgresql-archive/%f",
11         :max_wal_senders => "5"
12       }
13     }
14   },
15   :nominatim => {
16     :state => "master",
17     :enable_backup => true
18   },
19   :rsyncd => {
20     :modules => {
21       :archive => {
22         :comment => "WAL Archive",
23         :read_only => true,
24         :write_only => false,
25         :list => false,
26         :uid => "postgres",
27         :gid => "postgres",
28         :transfer_logging => false
29       }
30     }
31   }
32 )
33
34 run_list(
35   "recipe[rsyncd]",
36   "recipe[nominatim::master]",
37   "role[nominatim-base]"
38 )