X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/2c3bb4b02302a37e1c14e045833feb71b5a3130d..0751a4f9434ce69a40996fbec967501fe43e4f83:/cookbooks/wiki/recipes/default.rb diff --git a/cookbooks/wiki/recipes/default.rb b/cookbooks/wiki/recipes/default.rb index 2fe225c6e..287a645f6 100644 --- a/cookbooks/wiki/recipes/default.rb +++ b/cookbooks/wiki/recipes/default.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: wiki.openstreetmap.org +# Cookbook:: wiki.openstreetmap.org # Recipe:: default # -# Copyright 2013, OpenStreetMap Foundation +# Copyright:: 2013, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,8 +17,6 @@ # limitations under the License. # -# include_recipe "squid" - include_recipe "mediawiki" passwords = data_bag_item("wiki", "passwords") @@ -47,7 +45,7 @@ mediawiki_site "wiki.openstreetmap.org" do email_sender "wiki@noreply.openstreetmap.org" email_sender_name "OpenStreetMap Wiki" - metanamespace "OpenStreetMap" + metanamespace "Wiki" recaptcha_public_key "6LdFIQATAAAAAMwtHeI8KDgPqvRbXeNYSq1gujKz" recaptcha_private_key passwords["recaptcha"] @@ -60,6 +58,10 @@ mediawiki_extension "CodeEditor" do site "wiki.openstreetmap.org" end +mediawiki_extension "CodeMirror" do + site "wiki.openstreetmap.org" +end + mediawiki_extension "Scribunto" do site "wiki.openstreetmap.org" template "mw-ext-Scribunto.inc.php.erb" @@ -68,14 +70,13 @@ end mediawiki_extension "Wikibase" do site "wiki.openstreetmap.org" - compose true template "mw-ext-Wikibase.inc.php.erb" template_cookbook "wiki" end mediawiki_extension "OsmWikibase" do site "wiki.openstreetmap.org" - repository "git://github.com/nyurik/OsmWikibase.git" + repository "https://github.com/nyurik/OsmWikibase.git" reference "master" end @@ -95,6 +96,13 @@ mediawiki_extension "TimedMediaHandler" do site "wiki.openstreetmap.org" end +mediawiki_extension "MultiMaps" do + site "wiki.openstreetmap.org" + template "mw-ext-MultiMaps.inc.php.erb" + template_cookbook "wiki" + variables :thunderforest_key => passwords["thunderforest"] +end + cookbook_file "/srv/wiki.openstreetmap.org/osm_logo_wiki.png" do owner node[:mediawiki][:user] group node[:mediawiki][:group] @@ -120,10 +128,9 @@ directory "/srv/wiki.openstreetmap.org/dump" do mode "0775" end -template "/etc/cron.d/wiki-dump" do - owner "root" - group "root" - mode 0o644 - source "wiki-dump.erb" - variables :directory => "/srv/wiki.openstreetmap.org" +cron_d "wiki-dump" do + minute "0" + hour "2" + user "wiki" + command "cd /srv/wiki.openstreetmap.org && php w/maintenance/dumpBackup.php --full --quiet --output=gzip:dump/dump.xml.gz" end