Skip to content

Commit

Permalink
HUE-593. Script to relocate a hue installation
Browse files Browse the repository at this point in the history
Run the relocatable script in the installation directory (the one
created by "make install") to make it relocatable.
  • Loading branch information
bc Wong committed Oct 6, 2011
1 parent ca548cf commit 5eb46ce
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -189,6 +189,7 @@ INSTALL_CORE_FILES = \
ext \
tools/app_reg \
tools/virtual-bootstrap \
tools/relocatable.sh \
VERS* LICENSE* README*

.PHONY: install
Expand Down
1 change: 1 addition & 0 deletions Makefile.tarball
Expand Up @@ -27,6 +27,7 @@ PROD_INCLUDES := \
maven \
tools/app_reg \
tools/virtual-bootstrap \
tools/relocatable.sh \
VERSION \
VERSION_DATA

Expand Down
61 changes: 61 additions & 0 deletions tools/relocatable.sh
@@ -0,0 +1,61 @@
#!/bin/bash
# Licensed to Cloudera, Inc. under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. Cloudera, Inc. licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -e

usage() {
echo "
Make a Hue installation relocatable. Run this in the installation
directory created by 'make install', before you relocate it.
Usage:
$0
"
exit 1
}

if [ $# != 0 ] ; then
usage
fi

# We're in <hue_root>/tools
CURR_DIR="$(dirname $0)"
HUE_ROOT="$CURR_DIR/.."
ENV_PYTHON="$HUE_ROOT/build/env/bin/python"
VIRTUAL_BOOTSTRAP="$CURR_DIR/virtual-bootstrap/virtual-bootstrap.py"

# Step 1. Fix virtualenv
$ENV_PYTHON $VIRTUAL_BOOTSTRAP --relocatable "$HUE_ROOT/build/env"

# Step 1b. Fix any broken lib64 directory
LIB64="$HUE_ROOT/build/env/lib64"
if [ -L "$LIB64" -a ! -e "$LIB64" ] ; then
rm "$LIB64"
ln -s lib "$LIB64"
fi

# Step 2. Fix .ini symlinks for all apps (make them relative)
for app in $HUE_ROOT/apps/* ; do
if [ -d "$app/conf" ] ; then
appname=$(basename $app)
pushd "$HUE_ROOT/desktop/conf"
ln -sfv ../../apps/$appname/conf/*.ini .
popd
fi
done

# Step 3. Clean up any old .pyc files
find "$HUE_ROOT" . -name "*.pyc" -exec rm -f {} \;

0 comments on commit 5eb46ce

Please sign in to comment.