aboutsummaryrefslogtreecommitdiff
path: root/bigtop_toolchain
diff options
context:
space:
mode:
authorOlaf Flebbe <o.flebbe@science-computing.de>2015-01-14 11:57:31 +0100
committerKonstantin Boudnik <cos@apache.org>2015-01-14 11:23:24 -0800
commit5fe581b22635267d8e3bf93f55fd079bc9368497 (patch)
tree022dc1f27a9ceb12b945ad3ff6c2ac4030f7efe5 /bigtop_toolchain
parentd609e926a181d516f988f9793c07829dfe587a5c (diff)
BIGTOP-1596: Make apache forrest world writable as a workaround
Signed-off-by: Konstantin Boudnik <cos@apache.org>
Diffstat (limited to 'bigtop_toolchain')
-rw-r--r--bigtop_toolchain/manifests/forrest.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/bigtop_toolchain/manifests/forrest.pp b/bigtop_toolchain/manifests/forrest.pp
index 1086ba57..b0c87f06 100644
--- a/bigtop_toolchain/manifests/forrest.pp
+++ b/bigtop_toolchain/manifests/forrest.pp
@@ -29,4 +29,20 @@ class bigtop_toolchain::forrest {
target => '/usr/local/apache-forrest-0.9',
require => Exec['/bin/tar xvzf /usr/src/apache-forrest-0.9.tar.gz'],
}
+ # BIGTOP-1596
+ file { '/usr/local/apache-forrest/build':
+ ensure => 'directory',
+ mode => '0777',
+ recurse => true,
+ }
+ file { '/usr/local/apache-forrest/main':
+ ensure => 'directory',
+ mode => '0777',
+ recurse => true,
+ }
+ file { '/usr/local/apache-forrest/plugins':
+ ensure => 'directory',
+ mode => '0777',
+ recurse => true,
+ }
}