Repository: bigtop Updated Branches: refs/heads/master 5dd666198 -> d8ea05410
BIGTOP-1606. Move the tachyon webapp data under tachyon home Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/d8ea0541 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/d8ea0541 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/d8ea0541 Branch: refs/heads/master Commit: d8ea0541023a313728103e91ca52ced04c96e58b Parents: 5dd6661 Author: David Capwell <[email protected]> Authored: Sat Jan 17 17:47:41 2015 -0800 Committer: jayunit100 <[email protected]> Committed: Sun Jan 18 18:52:44 2015 -0500 ---------------------------------------------------------------------- bigtop-packages/src/common/tachyon/install_tachyon.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/d8ea0541/bigtop-packages/src/common/tachyon/install_tachyon.sh ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/tachyon/install_tachyon.sh b/bigtop-packages/src/common/tachyon/install_tachyon.sh index ee4faf8..9ed9ab4 100644 --- a/bigtop-packages/src/common/tachyon/install_tachyon.sh +++ b/bigtop-packages/src/common/tachyon/install_tachyon.sh @@ -26,7 +26,7 @@ usage: $0 <options> Optional options: --bin-dir=DIR path to install bin - --data-dir=DIR path to install Tachyon webapp + --data-dir=DIR path to install local Tachyon data ... [ see source for more similar options ] " exit 1 @@ -99,18 +99,18 @@ install -d -m 0755 $PREFIX/$LIB_DIR/libexec install -d -m 0755 $PREFIX/$LIB_DIR/lib install -d -m 0755 $PREFIX/$DATA_DIR install -d -m 0755 $PREFIX/$DATA_DIR/tachyon -install -d -m 0755 $PREFIX/$DATA_DIR/tachyon/web install -d -m 0755 $PREFIX/etc install -d -m 0755 $PREFIX/etc/tachyon install -d -m 0755 $PREFIX/$VAR_DIR/log/tachyon install -d -m 0755 $PREFIX/$VAR_DIR/lib/tachyon/journal +install -d -m 0755 $PREFIX/$VAR_DIR/lib/tachyon/core/src/main/webapp install -d -m 0755 $PREFIX/$VAR_DIR/run/tachyon #cp -ra ${BUILD_DIR}/lib/* $PREFIX/${LIB_DIR}/lib/ cp client/target/tachyon-client*.jar core/target/tachyon*.jar $PREFIX/$LIB_DIR cp -a bin/* $PREFIX/${LIB_DIR}/bin cp -a libexec/* $PREFIX/${LIB_DIR}/libexec -cp -rf core/src/main/webapp $PREFIX/$DATA_DIR/tachyon/web +cp -rf core/src/main/webapp $PREFIX/$VAR_DIR/lib/tachyon/core/src/main # Copy in the configuration files install -m 0644 conf/log4j.properties conf/slaves $PREFIX/etc/tachyon
