From 01e2c8dc07b63532dcae2e7259619c809cbf1619 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 20 Sep 2023 08:32:55 +0100 Subject: [PATCH] Remove the ability to specify a custom directory for mediawiki It doesn't actually work because the timer jobs assums they can infer the directory from the site name. --- cookbooks/foundation/recipes/board.rb | 1 - cookbooks/foundation/recipes/dwg.rb | 1 - cookbooks/foundation/recipes/mwg.rb | 1 - cookbooks/foundation/recipes/wiki.rb | 1 - cookbooks/mediawiki/resources/site.rb | 3 +-- cookbooks/wiki/recipes/default.rb | 1 - 6 files changed, 1 insertion(+), 7 deletions(-) diff --git a/cookbooks/foundation/recipes/board.rb b/cookbooks/foundation/recipes/board.rb index c7b650eb7..597733e42 100644 --- a/cookbooks/foundation/recipes/board.rb +++ b/cookbooks/foundation/recipes/board.rb @@ -24,7 +24,6 @@ passwords = data_bag_item("foundation", "passwords") mediawiki_site "board.osmfoundation.org" do sitename "OSMF Board Wiki" metanamespace "OSMFBoard" - directory "/srv/board.osmfoundation.org" fpm_prometheus_port 11004 database_name "board-wiki" database_user "board-wikiuser" diff --git a/cookbooks/foundation/recipes/dwg.rb b/cookbooks/foundation/recipes/dwg.rb index 9d9a12fc8..b8fb93f61 100644 --- a/cookbooks/foundation/recipes/dwg.rb +++ b/cookbooks/foundation/recipes/dwg.rb @@ -24,7 +24,6 @@ passwords = data_bag_item("foundation", "passwords") mediawiki_site "dwg.osmfoundation.org" do sitename "OSMF Data Working Group Wiki" metanamespace "OSMFDWG" - directory "/srv/dwg.osmfoundation.org" fpm_prometheus_port 11002 database_name "dwg-wiki" database_user "dwg-wikiuser" diff --git a/cookbooks/foundation/recipes/mwg.rb b/cookbooks/foundation/recipes/mwg.rb index b0a8240fd..e9263ba0a 100644 --- a/cookbooks/foundation/recipes/mwg.rb +++ b/cookbooks/foundation/recipes/mwg.rb @@ -24,7 +24,6 @@ passwords = data_bag_item("foundation", "passwords") mediawiki_site "mwg.osmfoundation.org" do sitename "OSMF Membership Working Group Wiki" metanamespace "OSMFMWG" - directory "/srv/mwg.osmfoundation.org" fpm_prometheus_port 11003 database_name "mwg_wiki" database_user "mwg_wikiuser" diff --git a/cookbooks/foundation/recipes/wiki.rb b/cookbooks/foundation/recipes/wiki.rb index d132cbe31..e6ef37230 100644 --- a/cookbooks/foundation/recipes/wiki.rb +++ b/cookbooks/foundation/recipes/wiki.rb @@ -25,7 +25,6 @@ mediawiki_site "osmfoundation.org" do aliases ["wiki.osmfoundation.org", "www.osmfoundation.org", "foundation.openstreetmap.org", "foundation.osm.org"] sitename "OpenStreetMap Foundation" - directory "/srv/wiki.osmfoundation.org" fpm_max_children 20 fpm_start_servers 5 fpm_min_spare_servers 5 diff --git a/cookbooks/mediawiki/resources/site.rb b/cookbooks/mediawiki/resources/site.rb index 476ce1699..7bf4d5abc 100644 --- a/cookbooks/mediawiki/resources/site.rb +++ b/cookbooks/mediawiki/resources/site.rb @@ -23,7 +23,6 @@ default_action :create property :site, :kind_of => String, :name_property => true property :aliases, :kind_of => [String, Array] -property :directory, :kind_of => String property :version, :kind_of => String, :default => "1.39" property :database_name, :kind_of => String, :required => true property :database_user, :kind_of => String, :required => [:create, :update] @@ -560,7 +559,7 @@ action_class do include OpenStreetMap::Mixin::PersistentToken def site_directory - new_resource.directory || "/srv/#{new_resource.site}" + "/srv/#{new_resource.site}" end def mediawiki_reference diff --git a/cookbooks/wiki/recipes/default.rb b/cookbooks/wiki/recipes/default.rb index 46a71ad85..b93092031 100644 --- a/cookbooks/wiki/recipes/default.rb +++ b/cookbooks/wiki/recipes/default.rb @@ -32,7 +32,6 @@ mediawiki_site "wiki.openstreetmap.org" do "wiki.openstreetmap.ca", "wiki.openstreetmap.eu", "wiki.openstreetmap.pro", "wiki.openstreetmaps.org", "osm.wiki", "www.osm.wiki", "wiki.osm.wiki"] - directory "/srv/wiki.openstreetmap.org" fpm_max_children 50 fpm_start_servers 10 -- 2.43.2