From 8c5918ecf5497aee4443557dc94bb1a9c0514878 Mon Sep 17 00:00:00 2001 From: Ramy Asselin Date: Thu, 29 May 2014 17:44:52 -0700 Subject: [PATCH] Allow nodepool standalone puppet install Installing nodepool standalone has this error: Could not find dependency Class[Pip] for Exec[install_nodepool] at /root/config/modules/nodepool/manifests/init.pp:90 Add the missing include pip statement. Change-Id: Id30814eb1788e7b7eb533794a26c231000e9b41c --- modules/nodepool/manifests/init.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nodepool/manifests/init.pp b/modules/nodepool/manifests/init.pp index a211509d89..d0b81ac84f 100644 --- a/modules/nodepool/manifests/init.pp +++ b/modules/nodepool/manifests/init.pp @@ -81,6 +81,7 @@ class nodepool ( source => $git_source_repo, } + include pip exec { 'install_nodepool' : command => 'pip install /opt/nodepool', path => '/usr/local/bin:/usr/bin:/bin/',