You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2016/05/25 20:34:55 UTC

[33/39] incubator-trafodion git commit: removing sudo

removing sudo


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

Branch: refs/heads/master
Commit: c0552b02c30e4da6aa419fbc76e763a3d62b0a3e
Parents: 0205fce
Author: Amanda Moran <am...@apache.com>
Authored: Fri May 13 21:55:52 2016 +0000
Committer: Amanda Moran <am...@apache.com>
Committed: Fri May 13 21:55:52 2016 +0000

----------------------------------------------------------------------
 install/installer/dcs_installer  | 2 +-
 install/installer/rest_installer | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/c0552b02/install/installer/dcs_installer
----------------------------------------------------------------------
diff --git a/install/installer/dcs_installer b/install/installer/dcs_installer
index 7da8567..8c9d544 100755
--- a/install/installer/dcs_installer
+++ b/install/installer/dcs_installer
@@ -131,7 +131,7 @@ mkdir -p $DCS_INSTALL_PATH
 cd $DCS_INSTALL_PATH
 
 if [[ "$ONE_TAR_INSTALL" == "Y" ]]; then
-   DCS_DIR=$(sudo ls $SQ_ROOT | grep dcs)
+   DCS_DIR=$(ls $SQ_ROOT | grep dcs)
    DCS_DIR=$SQ_ROOT/$DCS_DIR
    echo "***INFO: DCS Install Directory: $DCS_DIR"
 else

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/c0552b02/install/installer/rest_installer
----------------------------------------------------------------------
diff --git a/install/installer/rest_installer b/install/installer/rest_installer
index ae89807..7e52448 100755
--- a/install/installer/rest_installer
+++ b/install/installer/rest_installer
@@ -94,7 +94,7 @@ mkdir -p $REST_INSTALL_PATH
 cd $REST_INSTALL_PATH
 
 if [[ "$ONE_TAR_INSTALL" == "Y" ]]; then
-   REST_DIR=$(sudo ls $SQ_ROOT | grep rest)
+   REST_DIR=$(ls $SQ_ROOT | grep rest)
    REST_DIR=$SQ_ROOT/$REST_DIR
    echo "***INFO: Rest Install Directory: $REST_DIR"