Added openafs
This commit is contained in:
parent
5785e95fe3
commit
fdc7d0dc87
@ -59,4 +59,4 @@ size=$(getsize);
|
||||
[ -n "$DEBUG" ] && echo "Processing Kerberous, with size ($size)"
|
||||
|
||||
# Backup to TSM
|
||||
kdb5_util dump| tsmpipe -Bcs ${FILESPACE} -f FULL -l ${size} ${TSMPIPE_ARGS}
|
||||
/usr/sbin/kdb5_util dump| tsmpipe -Bcs ${FILESPACE} -f FULL -l ${size} ${TSMPIPE_ARGS}
|
||||
|
@ -21,25 +21,19 @@
|
||||
# Copyright (c) 2012-2013 by Deon George
|
||||
|
||||
# Check our arguments
|
||||
while getopts ":DF:m:p:P:s:u:" opt; do
|
||||
while getopts ":DF:p:P:u:" opt; do
|
||||
case $opt in
|
||||
D) DEBUG=1 ;;
|
||||
|
||||
# Filespace to store in TSM
|
||||
F) FILESPACE=$OPTARG ;;
|
||||
|
||||
# Optional MYSQL arguments
|
||||
m) MYSQL_ARGS=$OPTARG ;;
|
||||
|
||||
# Mysql PASSWORD
|
||||
p) DBPASS=$OPTARG ;;
|
||||
|
||||
# PITDATE to restore
|
||||
P) PITDATE=$OPTARG ;;
|
||||
|
||||
# Skip DBs
|
||||
s) SKIP_DB=$OPTARG ;;
|
||||
|
||||
# Mysql USERNAME
|
||||
u) DBUSER=$OPTARG ;;
|
||||
|
||||
@ -54,6 +48,7 @@ while getopts ":DF:m:p:P:s:u:" opt; do
|
||||
;;
|
||||
esac
|
||||
done
|
||||
shift $(( $OPTIND -1 ))
|
||||
|
||||
# Our defaults
|
||||
DB=${@:?"You need to specicify a database to restore"}
|
||||
|
73
scripts/tdp.openafs.restore.sh
Executable file
73
scripts/tdp.openafs.restore.sh
Executable file
@ -0,0 +1,73 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||
# copy of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
#
|
||||
# Copyright (c) 2012-2013 by Deon George
|
||||
|
||||
# Check our arguments
|
||||
while getopts ":DFh::p:P:r:v:" opt; do
|
||||
case $opt in
|
||||
D) DEBUG=1 ;;
|
||||
|
||||
# Filespace to store in TSM
|
||||
F) FILESPACE=$OPTARG ;;
|
||||
|
||||
# Host
|
||||
h) HOST=$OPTARG ;;
|
||||
|
||||
# Volume to restore to
|
||||
p) PARTITION=$OPTARG ;;
|
||||
|
||||
# PITDATE to restore
|
||||
P) PITDATE=$OPTARG ;;
|
||||
|
||||
# Rename Volume
|
||||
r) RENAME=$OPTARG ;;
|
||||
|
||||
# Vos arguements
|
||||
v) VOS_ARGS=$OPTARG ;;
|
||||
|
||||
# Error Checking
|
||||
\?)
|
||||
echo "Invalid option: -$OPTARG" >&2
|
||||
exit 1
|
||||
;;
|
||||
:)
|
||||
echo "Option -$OPTARG requires an argument." >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
shift $(( $OPTIND -1 ))
|
||||
|
||||
# Our defaults
|
||||
PARTIION=${PARTITION:?"You need to specicify a partition to restore to"}
|
||||
DB=${@:?"You need to specicify a database to restore"}
|
||||
|
||||
FILESPACE=${FILESPACE:-"/afsdump"}
|
||||
HOST=${HOST:-"localhost"}
|
||||
RENAME=${RENAME:-$DB}
|
||||
|
||||
# TSMPIPE ARGUMENTS
|
||||
[ -n "$PITDATE" ] && TSMPIPE_ARGS="${TSMPIPE_ARGS} -P ${PITDATE}"
|
||||
|
||||
[ -n "$DEBUG" ] && echo "Processing DB ($DB) restoring to (${PARTITION}) with name (${RENAME})"
|
||||
|
||||
# Restore from TSM
|
||||
echo "tsmpipe -Bxs ${FILESPACE} -f ${DB}.FULL ${TSMPIPE_ARGS} | vos restore ${HOST} ${PARTITION} ${RENAME} ${VOS_ARGS}"
|
121
scripts/tdp.openafs.sh
Executable file
121
scripts/tdp.openafs.sh
Executable file
@ -0,0 +1,121 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||
# copy of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
#
|
||||
# Copyright (c) 2012-2013 by Deon George
|
||||
|
||||
# Check our arguments
|
||||
while getopts ":DF:M:s:v:U" opt; do
|
||||
case $opt in
|
||||
D) DEBUG=1 ;;
|
||||
|
||||
# Filespace to store in TSM
|
||||
F) FILESPACE=$OPTARG ;;
|
||||
|
||||
# Digest to use
|
||||
M) DIGEST=$OPTARG ;;
|
||||
|
||||
# Skip VOLs
|
||||
s) SKIP_VOL=$OPTARG ;;
|
||||
|
||||
# Only process updates
|
||||
U) UPDATE_ONLY=1 ;;
|
||||
|
||||
# Just backup this Vol
|
||||
v) VOL=$OPTARG ;;
|
||||
|
||||
# Error Checking
|
||||
\?)
|
||||
echo "Invalid option: -$OPTARG" >&2
|
||||
exit 1
|
||||
;;
|
||||
:)
|
||||
echo "Option -$OPTARG requires an argument." >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Our defaults
|
||||
FILESPACE=${FILESPACE:-"/afsdump"}
|
||||
LASTDB=/var/tmp/tdp.afs.txt
|
||||
|
||||
# List our Databases
|
||||
function list() {
|
||||
/usr/sbin/vos listvol localhost -localauth -quiet |awk '{print $1}'
|
||||
}
|
||||
|
||||
# Get Size
|
||||
function getsize() {
|
||||
echo 1024*$(/usr/sbin/vos examine -format -localauth $1|grep diskused | awk '{print $2}')|bc
|
||||
}
|
||||
|
||||
# Last Change
|
||||
function getlast() {
|
||||
/usr/sbin/vos examine -format -localauth $1|grep updateDate | awk '{print $2}'
|
||||
}
|
||||
|
||||
# TSMPIPE ARGUMENTS
|
||||
[ -n "$DIGEST" ] && TSMPIPE_ARGS="${TSMPIPE_ARGS} -m ${DIGEST}"
|
||||
|
||||
# Make sure we have BC
|
||||
type bc > /dev/null 2>&1
|
||||
if [ $? -gt 0 ]; then
|
||||
echo 'Need BC' && exit 1
|
||||
fi
|
||||
|
||||
list | while read db; do
|
||||
[ -n "$VOL" -a "$db" != "$VOL" ] && continue;
|
||||
|
||||
SKIP=0
|
||||
if [ -n "$SKIP_VOL" ]; then
|
||||
OLDIFS=$IFS
|
||||
IFS=":"
|
||||
for x in $SKIP_VOL ; do
|
||||
[ $x == $db ] && SKIP=1 && break
|
||||
done
|
||||
IFS=$OLDIFS
|
||||
fi
|
||||
|
||||
# We need to skip this VOL
|
||||
[ "$SKIP" -eq 1 ] && continue;
|
||||
|
||||
size=$(getsize $db);
|
||||
last=$(getlast $db)
|
||||
|
||||
[ -n "$DEBUG" ] && echo "Processing VOL ($db), with size ($size), last updated ($last)"
|
||||
|
||||
# Backup to TSM
|
||||
if [ -n "$UPDATE_ONLY" ]; then
|
||||
if [ -w $LASTDB ]; then
|
||||
last_backup=$(cat $LASTDB|grep -e "\ $db\$" | awk '{print $1}')
|
||||
[ -n "$DEBUG" ] && echo "Last backed up ($last_backup)"
|
||||
[ $last -eq $last_backup ] && continue
|
||||
fi
|
||||
fi
|
||||
|
||||
/usr/sbin/vos dump -localauth $db 2>/dev/null| tsmpipe -Bcs ${FILESPACE} -f ${db}.FULL -l ${size} ${TSMPIPE_ARGS}
|
||||
[ ! -e $LASTDB ] && touch $LASTDB
|
||||
|
||||
if grep -qe "\ ${db}\$" $LASTDB; then
|
||||
sed -ie "s/^\([0-9]\+\)\ $db\$/$last $db/" $LASTDB
|
||||
else
|
||||
echo $last $db >> $LASTDB
|
||||
fi
|
||||
done;
|
@ -48,7 +48,7 @@ FILESPACE=${FILESPACE:-"/ldapdump"}
|
||||
|
||||
# Get Size
|
||||
function getsize() {
|
||||
slapcat | wc -c
|
||||
/usr/sbin/slapcat | wc -c
|
||||
}
|
||||
|
||||
# TSMPIPE ARGUMENTS
|
||||
@ -59,4 +59,4 @@ size=$(getsize);
|
||||
[ -n "$DEBUG" ] && echo "Processing OpenLDAP, with size ($size)"
|
||||
|
||||
# Backup to TSM
|
||||
slapcat | tsmpipe -Bcs ${FILESPACE} -f FULL -l ${size} ${TSMPIPE_ARGS}
|
||||
/usr/sbin/slapcat | tsmpipe -Bcs ${FILESPACE} -f FULL -l ${size} ${TSMPIPE_ARGS}
|
||||
|
Reference in New Issue
Block a user