]> git.openstreetmap.org Git - chef.git/blobdiff - roles/nominatim-master.rb
remove autoconf-based nominatim roles and recipes
[chef.git] / roles / nominatim-master.rb
diff --git a/roles/nominatim-master.rb b/roles/nominatim-master.rb
deleted file mode 100644 (file)
index 1961d83..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-name "nominatim-master"
-description "Role applied to the master nominatim server"
-
-default_attributes(
-  :postgresql => {
-    :settings => {
-      :defaults => {
-        :wal_level => "hot_standby",
-        :archive_mode => "on",
-        :archive_command => "/bin/cp %p /data/postgresql-archive/%f",
-        :max_wal_senders => "5"
-      }
-    }
-  },
-  :nominatim => {
-    :state => "master",
-    :enable_backup => true
-  },
-  :rsyncd => {
-    :modules => {
-      :archive => {
-        :comment => "WAL Archive",
-        :read_only => true,
-        :write_only => false,
-        :list => false,
-        :uid => "postgres",
-        :gid => "postgres",
-        :transfer_logging => false
-      }
-    }
-  }
-)
-
-run_list(
-  "recipe[rsyncd]",
-  "recipe[nominatim::master]",
-  "role[nominatim-base]"
-)