You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by ni...@apache.org on 2014/03/29 17:22:57 UTC

git commit: adding a missed commit for copying MB client libs

Repository: incubator-stratos
Updated Branches:
  refs/heads/master d18d0afde -> a58bf605a


adding a missed commit for copying MB client libs


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/a58bf605
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/a58bf605
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/a58bf605

Branch: refs/heads/master
Commit: a58bf605a4124c7feb937957199e32ea7c2558ea
Parents: d18d0af
Author: Nirmal Fernando <ni...@apache.org>
Authored: Sat Mar 29 21:52:38 2014 +0530
Committer: Nirmal Fernando <ni...@apache.org>
Committed: Sat Mar 29 21:52:38 2014 +0530

----------------------------------------------------------------------
 tools/puppet3/modules/agent/manifests/initialize.pp | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a58bf605/tools/puppet3/modules/agent/manifests/initialize.pp
----------------------------------------------------------------------
diff --git a/tools/puppet3/modules/agent/manifests/initialize.pp b/tools/puppet3/modules/agent/manifests/initialize.pp
index 67d1d43..39e9eb7 100755
--- a/tools/puppet3/modules/agent/manifests/initialize.pp
+++ b/tools/puppet3/modules/agent/manifests/initialize.pp
@@ -69,12 +69,14 @@ define agent::initialize ($repo, $version, $service, $local_dir, $target, $owner
 
   }
 
-  file { '${target}/apache-stratos-${service}-${version}/lib':
-    path         => '${target}/apache-stratos-${service}-${version}/lib',
+  file { "/${target}/apache-stratos-${service}-${version}/lib":
+    path         => "/${target}/apache-stratos-${service}-${version}/lib",
     ensure       => directory,
     require      => Exec["setting_permission_for_${name}"],
-    source       => ['puppet:///modules/agent/${mb_type}'],
+    source       => ["puppet:///modules/agent/${mb_type}"],
     sourceselect => all,
     recurse      => true,
   }
+
+
 }