From cb0b7b336396c653e1f0c9b572fa48f8995243fa Mon Sep 17 00:00:00 2001 From: Michael Krotscheck Date: Mon, 20 Apr 2015 17:18:35 -0700 Subject: [PATCH] Added git. Git needs to be installed so we can checkout the refstack source. --- manifests/api.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifests/api.pp b/manifests/api.pp index 032997a..1b5d84a 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -30,4 +30,11 @@ class refstack::api () { } include python::install + # Ensure Git is present + if !defined(Package['git']) { + package { 'git': + ensure => present + } + } + }