From 0a8dc769da803d3c855eb50cbbb24bb80d7235ef Mon Sep 17 00:00:00 2001
From: Elizabeth Krumbach <lyz@princessleia.com>
Date: Mon, 29 Jul 2013 13:33:04 -0700
Subject: [PATCH] Add gcc package dependency to jeepyb module

The entrypoints use for jeepyb won't work without pycrypto
installed, so we want to be able to pip install pycrypto which
requires the gcc package.

Change-Id: I9ff914347743c20728b5b10028866d8cbc7f0c61
---
 modules/jeepyb/manifests/init.pp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/jeepyb/manifests/init.pp b/modules/jeepyb/manifests/init.pp
index 15feae74e0..6d9fc3b2a9 100644
--- a/modules/jeepyb/manifests/init.pp
+++ b/modules/jeepyb/manifests/init.pp
@@ -35,6 +35,10 @@ class jeepyb (
     }
   }
 
+  package { 'gcc':
+    ensure => present,
+  }
+
   # A lot of things need yaml, be conservative requiring this package to avoid
   # conflicts with other modules.
   case $::osfamily {