From: Grant Slater Date: Tue, 20 Sep 2022 15:27:55 +0000 (+0100) Subject: sotm: fix chef dependency tree X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/5bb46523d1531217ba4bcd766af05d24815aacdb sotm: fix chef dependency tree --- diff --git a/cookbooks/stateofthemap/metadata.rb b/cookbooks/stateofthemap/metadata.rb index b872349b2..206bddd07 100644 --- a/cookbooks/stateofthemap/metadata.rb +++ b/cookbooks/stateofthemap/metadata.rb @@ -6,5 +6,7 @@ description "Installs and configures State of the Map services" version "1.0.0" supports "ubuntu" +depends "apache" +depends "git" depends "ruby" depends "wordpress" diff --git a/cookbooks/stateofthemap/recipes/default.rb b/cookbooks/stateofthemap/recipes/default.rb index 6b64db9e0..17161f5f1 100644 --- a/cookbooks/stateofthemap/recipes/default.rb +++ b/cookbooks/stateofthemap/recipes/default.rb @@ -17,6 +17,9 @@ # limitations under the License. # +include_recipe "apache" +include_recipe "git" + git "/srv/stateofthemap.org" do action :sync repository "https://git.openstreetmap.org/public/stateofthemap.git"