#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF 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
#
#
# 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.
#
# Shell script to make an Atomic Backup after Commit of
# a Solr Lucene collection.
orig_dir=$(pwd)
cd ${0%/*}/..
solr_root=$(pwd)
cd ${orig_dir}
curl_url=""
# set up variables
# define usage string
USAGE="\
usage: $prog [-h hostname] [-p port] [-d dir] [-w webapp_name] [-u username] [-U url] [-v] [-V]
-h specify Solr hostname (defaults to localhost)
-p specify Solr port number
-w specify name of Solr webapp (defaults to solr)
-u specify user to sudo to before running script
-U specify full update url (overrides -h,-p,-w parameters)
-d specify directory holding index data (defaults to data)
-v increase verbosity
-V output debugging info
"
# parse args
do
h)
;;
p)
;;
d)
;;
w)
;;
u)
;;
U)
;;
v)
verbose="v"
;;
V)
debug="V"
;;
*)
echo "$USAGE"
exit 1
esac
done
[[ -n $debug ]] && set -x
fixUser "$@"
logMessage command: $0 $@
if [[ $? != 0 ]]
then
fi
# check status of commit request - original format
if [[ $? != 0 ]]
then
# check status of commit request - new format
if [[ $? != 0 ]]
then
fi
fi
# successful commit creates a snapshot file synchronously
if [[ $lastsnap == "" ]]
then
fi
then
fi
then
fi
trap 'echo cleaning up, please wait ...;/bin/rm -rf ${data_dir}/${name} ${data_dir}/${temp};logExit aborted 13' INT TERM
# make a backup using hard links into temporary location
# then move it into place atomically
if [[ "${OS}" == "SunOS" || "${OS}" == "Darwin" || "${OS}" == "FreeBSD" ]]
then
orig_dir=$(pwd)
cd ${lastsnap}
cd ${orig_dir}
else
fi