blob: 0cc2f6287fa2be2a88b233ecb61830bfeb237ec1 [file] [log] [blame]
vaibhavjayas5ca54652018-07-31 09:23:16 +00001# Copyright © 2018 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000015# BEGIN Store prev
16BD=/opt/app/osaaf/backup
17if [ -e "$BD/6day" ]; then
18 rm -Rf $BD/6day
19fi
20
21PREV=$BD/6day
22for D in $BD/5day $BD/4day $BD/3day $BD/2day $BD/yesterday; do
23 if [ -e "$D" ]; then
24 mv "$D" "$PREV"
25 fi
26 PREV="$D"
27done
28
29if [ -e "$BD/today" ]; then
30 if [ -e "$BD/backup.log" ]; then
31 mv $BD/backup.log $BD/today
32 fi
33 gzip $BD/today/*
34 mv $BD/today $BD/yesterday
35fi
36
37mkdir $BD/today
38
39# END Store prev
40date
41docker exec -t aaf_cass bash -c "mkdir -p /opt/app/cass_backup"
42docker container cp $BD/cbackup.sh aaf_cass:/opt/app/cass_backup/backup.sh
43# echo "login as Root, then run \nbash /opt/app/cass_backup/backup.sh"
44docker exec -t aaf_cass bash /opt/app/cass_backup/backup.sh
45docker container cp aaf_cass:/opt/app/cass_backup/. $BD/today
46date