From 23a21701597018effd5bc1d3c9d46689332c2976 Mon Sep 17 00:00:00 2001 From: Spencer Krum Date: Sat, 7 Feb 2015 06:41:36 -0800 Subject: [PATCH] Setting dependencies in metadata.json The log_processor module depends on pip, logstash, and logrotate. This has implications for the work fungi is doing to delete the pip module entirely. I think a 'manage_pip' flag to the log_proccessor module is a good way to conditionally manage pip. OpenstacCI would leave this off and it would be on by default for users pulling down this module. Change-Id: I2038c5436c427243021ed6f578d90d689347120d --- metadata.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 77776fd..6aa1ecc 100644 --- a/metadata.json +++ b/metadata.json @@ -7,5 +7,9 @@ "source": "git://git.openstack.org/openstack-infra/puppet-log_processor.git", "project_page": "http://ci.openstack.org/", "issues_url": "https://storyboard.openstack.org/#!/project/801", - "dependencies": [] + "dependencies": [ + {"name":"openstackci/logstash","version_requirement":">= 0.0.1"}, + {"name":"openstackci/pip","version_requirement":">= 0.0.1"}, + {"name":"openstackci/logrotate","version_requirement":">= 0.0.1"} + ] }