Merge "Modify Portal Property values in console.conf"
[oom.git] / kubernetes / aaf / resources / config / backup / backup.sh
1 # 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
15 # BEGIN Store prev
16 BD=/opt/app/osaaf/backup
17 if [ -e "$BD/6day" ]; then
18    rm -Rf $BD/6day
19 fi
20
21 PREV=$BD/6day
22 for 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"
27 done
28
29 if [ -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
35 fi
36
37 mkdir $BD/today
38
39 # END Store prev
40 date
41 docker exec -t aaf_cass bash -c "mkdir -p /opt/app/cass_backup"
42 docker 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"
44 docker exec -t aaf_cass bash /opt/app/cass_backup/backup.sh
45 docker container cp aaf_cass:/opt/app/cass_backup/. $BD/today
46 date