-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_backups.sh
executable file
·55 lines (45 loc) · 2 KB
/
delete_backups.sh
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
#!/bin/bash
##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
##
## 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.
THISDOMAIN="$1"
THISHOST="$2"
FROMDATE="$3"
echo "Getting backups for ${THISDOMAIN}${THISHOST}"
RET=`mccli backup show --domain=${THISDOMAIN} --name=${THISHOST} --before=${FROMDATE} 2>&1 | grep -c "Client does not exist"`
if [ "${RET}" == "1" ]
then
echo "No backups found for ${THISDOMAIN}${THISHOST}"
exit
fi
mccli backup show --domain=${THISDOMAIN} --name=${THISHOST} --before=${FROMDATE} --verbose=True 2>&1 | grep ^[1-2] | awk '{ print $1"~"$4"~"$7}' > "backups_${THISHOST}"
for LINE in $(grep -e '~D$\|~DW$' "backups_${THISHOST}")
do
LABEL=`echo ${LINE} | cut -d "~" -f2`
THISDATE=`echo ${LINE} | cut -d "~" -f1`
if [ "${LABEL}" != "" ] && [ "${THISDATE}" != "" ]
then
echo "Deleting backup of ${THISHOST} from ${THISDATE} - label #${LABEL}"
echo "mccli backup delete --force --domain=${THISDOMAIN} --name=${THISHOST} --created=\"${THISDATE}\" --labelNum=\"${LABEL}\"" >> "deletelog_${THISHOST}"
mccli backup delete --force --domain=${THISDOMAIN} --name=${THISHOST} --created="${THISDATE}" --labelNum="${LABEL}" >> "deletelog_${THISHOST}"
RET="$?"
if [ "${RET}" -gt "0" ]
then
echo "Failed to delete backup"
echo "Failed to delete backup" >> "deletelog_${THISHOST}"
fi
fi
done
rm "backups_${THISHOST}"