/usr/share/pegasus/sh/pegasus-lite-common.sh is in pegasus-wms 4.4.0+dfsg-5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | #!/bin/bash
##
# Copyright 2007-2011 University Of Southern California
#
# Licensed 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.
##
#
# This file contains a set of common bash funtions to be used by
# Pegasus Lite jobs
#
# Author: Mats Rynge <rynge@isi.edu>
#
function pegasus_lite_log()
{
TS=`/bin/date +'%F %H:%M:%S'`
echo "$TS: $1" 1>&2
}
function pegasus_lite_worker_package()
{
# many ways of providing worker package
if pegasus_lite_internal_wp_shipped || pegasus_lite_internal_wp_in_env || pegasus_lite_internal_wp_download; then
return 0
fi
return 1
}
function pegasus_lite_internal_wp_shipped()
{
# was the job shipped with a Pegasus worker package?
if ls $pegasus_lite_start_dir/pegasus-worker-*.tar.gz >/dev/null 2>&1; then
pegasus_lite_log "The job contained a Pegasus worker package"
tar xzf $pegasus_lite_start_dir/pegasus-worker-*.tar.gz
rm -f $pegasus_lite_start_dir/pegasus-worker-*.tar.gz
unset PEGASUS_HOME
export PATH=${pegasus_lite_work_dir}/pegasus-${pegasus_lite_full_version}/bin:$PATH
return 0
fi
return 1
}
function pegasus_lite_internal_wp_in_env()
{
old_path=$PATH
# use PEGASUS_HOME if set
if [ "x$PEGASUS_HOME" != "x" ]; then
PATH="$PEGASUS_HOME/bin:$PATH"
export PATH
fi
# is there already a pegasus install in our path?
detected_pegasus_bin=`which pegasus-config 2>/dev/null || /bin/true`
if [ "x$detected_pegasus_bin" != "x" ]; then
detected_pegasus_bin=`dirname $detected_pegasus_bin`
# does the version match?
if $detected_pegasus_bin/pegasus-config --version 2>/dev/null | grep -E "^${pegasus_lite_version_major}\.${pegasus_lite_version_minor}\." >/dev/null 2>/dev/null; then
pegasus_lite_log "Using existing Pegasus binaries in $detected_pegasus_bin"
return 0
else
pegasus_lite_log "Pegasus binaries in $detected_pegasus_bin do not match Pegasus version used for current workflow"
fi
fi
# back out env changes
unset PEGASUS_HOME
PATH=$old_path
export PATH
return 1
}
function pegasus_lite_internal_wp_download()
{
# fall back - download a worker package from pegasus.isi.edu
os=rhel
major=5
arch=`uname -m`
if [ $arch != "x86_64" ]; then
arch="x86"
fi
if [ -e /etc/redhat-release ]; then
os=rhel
major=`cat /etc/redhat-release | sed 's/.*release //' | sed 's/[\. ].*//'`
else
if [ -e /etc/debian_version ]; then
os=deb
major=`cat /etc/debian_version | sed 's/\..*//'`
fi
fi
url="http://download.pegasus.isi.edu/pegasus/${pegasus_lite_version_major}"
url="${url}.${pegasus_lite_version_minor}.${pegasus_lite_version_patch}"
url="${url}/pegasus-worker"
url="${url}-${pegasus_lite_version_major}.${pegasus_lite_version_minor}.${pegasus_lite_version_patch}"
url="${url}-${arch}_${os}_${major}.tar.gz"
pegasus_lite_log "Downloading Pegasus worker package from $url"
wget -q -O pegasus-worker.tar.gz "$url"
tar xzf pegasus-worker.tar.gz
rm -f pegasus-worker.tar.gz
unset PEGASUS_HOME
export PATH="${pegasus_lite_work_dir}/pegasus-${pegasus_lite_full_version}/bin:$PATH"
}
function pegasus_lite_setup_work_dir()
{
# remember where we started from
pegasus_lite_start_dir=`pwd`
if [ "x$pegasus_lite_work_dir" != "x" ]; then
pegasus_lite_log "Not creating a new work directory as it is already set to $pegasus_lite_work_dir"
return
fi
targets="$PEGASUS_WN_TMP $_CONDOR_SCRATCH_DIR $OSG_WN_TMP $TG_NODE_SCRATCH $TG_CLUSTER_SCRATCH $SCRATCH $TMPDIR $TMP /tmp"
unset TMPDIR
if [ "x$PEGASUS_WN_TMP_MIN_SPACE" = "x" ]; then
PEGASUS_WN_TMP_MIN_SPACE=1000000
fi
for d in $targets; do
pegasus_lite_log "Checking $d for potential use as work space... "
# does the target exist?
if [ ! -e $d ]; then
pegasus_lite_log " Workdir: $d does not exist"
continue
fi
# make sure there is enough available diskspace
cd $d
free=`df -kP . | awk '{if (NR==2) print $4}'`
if [ "x$free" == "x" -o $free -lt $PEGASUS_WN_TMP_MIN_SPACE ]; then
pegasus_lite_log " Workdir: not enough disk space available in $d"
continue
fi
if touch $d/.dirtest.$$ >/dev/null 2>&1; then
rm -f $d/.dirtest.$$ >/dev/null 2>&1
d=`mktemp -d $d/pegasus.XXXXXX`
export pegasus_lite_work_dir=$d
export pegasus_lite_work_dir_created=1
pegasus_lite_log " Work dir is $d - $free kB available"
cd $pegasus_lite_work_dir
return 0
fi
pegasus_lite_log " Workdir: not allowed to write to $d"
done
return 1
}
function pegasus_lite_init()
{
pegasus_lite_full_version=${pegasus_lite_version_major}.${pegasus_lite_version_minor}.${pegasus_lite_version_patch}
# announce version - we do this so pegasus-exitcode and other tools
# can tell the job was a PegasusLite job
pegasus_lite_log "PegasusLite: version ${pegasus_lite_full_version}" 1>&2
# for staged credentials, expand the paths and set strict permissions
for base in X509_USER_PROXY S3CFG SSH_PRIVATE_KEY irodsEnvFile; do
for key in `(env | grep -i ^$base | sed 's/=.*//') 2>/dev/null`; do
eval val="\$$key"
# expand the path
if ! (echo $val | grep "^/") >/dev/null 2>&1; then
eval $key=`pwd`/"$val"
eval val="\$$key"
pegasus_lite_log "Expanded \$$key to $val"
fi
chmod 0600 $val
done
done
}
function pegasus_lite_exit()
{
rc=$?
if [ "x$rc" = "x" ]; then
rc=0
fi
if [ "x$job_ec" != "x" ];then
if [ $job_ec != 0 ];then
pegasus_lite_log "Job failed with exitcode $job_ec"
rc=$job_ec
fi
fi
if [ $rc != 0 ]; then
pegasus_lite_log "FAILURE: Last command exited with $rc"
fi
if [ "x$pegasus_lite_work_dir_created" = "x1" ]; then
cd /
rm -rf $pegasus_lite_work_dir
pegasus_lite_log "$pegasus_lite_work_dir cleaned up"
fi
echo "PegasusLite: exitcode $rc" 1>&2
exit $rc
}
|