You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by iw...@apache.org on 2020/11/11 05:46:34 UTC

[bigtop] branch branch-1.5 updated: BIGTOP-3429. QFS smoke test fails on Ubuntu 16.04. (#696)

This is an automated email from the ASF dual-hosted git repository.

iwasakims pushed a commit to branch branch-1.5
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/branch-1.5 by this push:
     new 2367c95  BIGTOP-3429. QFS smoke test fails on Ubuntu 16.04. (#696)
2367c95 is described below

commit 2367c95f4be4bb60cc55adc2528caecf6e4195c9
Author: Kengo Seki <se...@apache.org>
AuthorDate: Wed Nov 11 14:41:31 2020 +0900

    BIGTOP-3429. QFS smoke test fails on Ubuntu 16.04. (#696)
    
    
    (cherry picked from commit b22191d2253d69202573df6cdec8bbbbd05cd8a1)
---
 bigtop-deploy/puppet/modules/qfs/manifests/init.pp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bigtop-deploy/puppet/modules/qfs/manifests/init.pp b/bigtop-deploy/puppet/modules/qfs/manifests/init.pp
index e1d6542..aecf186 100644
--- a/bigtop-deploy/puppet/modules/qfs/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/qfs/manifests/init.pp
@@ -169,8 +169,8 @@ class qfs {
     exec { "add_qfs_native_lib":
       path    => ['/bin','/sbin','/usr/bin','/usr/sbin'],
       command => 'find /usr/lib/qfs/ -name "lib*" -exec ln -s {} /usr/lib/hadoop/lib/native \;',
-      require => Package["qfs-client"],
-      notify => [ Service["hadoop-yarn-nodemanager"] ],
+      require => [ Package["hadoop-yarn-nodemanager"], Package["qfs-client"] ],
+      notify  => [ Service["hadoop-yarn-nodemanager"] ],
     }
   }
 }