From 5bb46523d1531217ba4bcd766af05d24815aacdb Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Tue, 20 Sep 2022 16:27:55 +0100 Subject: [PATCH] sotm: fix chef dependency tree --- cookbooks/stateofthemap/metadata.rb | 2 ++ cookbooks/stateofthemap/recipes/default.rb | 3 +++ 2 files changed, 5 insertions(+) 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" -- 2.39.5