X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/8f1ebda3ee9cff33dbd6ca29d24aea0f5294b04c..5145c748af08a7dcae1b38deb783d74c2b550ea2:/roles/nominatim-master.rb diff --git a/roles/nominatim-master.rb b/roles/nominatim-master.rb index 44fd93608..1961d835c 100644 --- a/roles/nominatim-master.rb +++ b/roles/nominatim-master.rb @@ -3,42 +3,36 @@ description "Role applied to the master nominatim server" default_attributes( :postgresql => { - :versions => ["9.3"], :settings => { :defaults => { :wal_level => "hot_standby", :archive_mode => "on", :archive_command => "/bin/cp %p /data/postgresql-archive/%f", - :max_wal_senders => "1", - :late_authentication_rules => [ - { :database => "replication", :user => "replication", :address => "146.179.159.164/32" } - ] + :max_wal_senders => "5" } } }, :nominatim => { + :state => "master", :enable_backup => true }, :rsyncd => { :modules => { :archive => { :comment => "WAL Archive", - :path => "/data/postgresql-archive", :read_only => true, :write_only => false, :list => false, :uid => "postgres", :gid => "postgres", - :transfer_logging => false, - :hosts_allow => [ - "146.179.159.164" - ] + :transfer_logging => false } } } ) run_list( - "role[nominatim]", - "recipe[rsyncd]" + "recipe[rsyncd]", + "recipe[nominatim::master]", + "role[nominatim-base]" )