Dan Timoney | 2ee28a5 | 2021-01-15 16:39:50 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | ### |
| 4 | # ============LICENSE_START======================================================= |
| 5 | # ONAP : SDN-C |
| 6 | # ================================================================================ |
guillaume.lambert | 7bf306e | 2021-09-08 12:03:22 +0200 | [diff] [blame^] | 7 | # Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
Dan Timoney | 2ee28a5 | 2021-01-15 16:39:50 -0500 | [diff] [blame] | 8 | # ================================================================================ |
| 9 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | # you may not use this file except in compliance with the License. |
| 11 | # You may obtain a copy of the License at |
| 12 | # |
| 13 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | # |
| 15 | # Unless required by applicable law or agreed to in writing, software |
| 16 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | # See the License for the specific language governing permissions and |
| 19 | # limitations under the License. |
| 20 | # ============LICENSE_END========================================================= |
| 21 | ### |
| 22 | |
| 23 | |
| 24 | if [ "$MDSAL_PATH" = "" ] |
| 25 | then |
| 26 | MDSAL_PATH=/opt/opendaylight/mdsal |
| 27 | fi |
| 28 | |
Dan Timoney | 2ee28a5 | 2021-01-15 16:39:50 -0500 | [diff] [blame] | 29 | if [ "$JOURNAL_PATH" = "" ] |
| 30 | then |
| 31 | JOURNAL_PATH=/opt/opendaylight/journal |
| 32 | fi |
| 33 | |
| 34 | if [ "$SNAPSHOTS_PATH" = "" ] |
| 35 | then |
| 36 | SNAPSHOTS_PATH=/opt/opendaylight/snapshots |
| 37 | fi |
| 38 | |
Dan Timoney | 2ee28a5 | 2021-01-15 16:39:50 -0500 | [diff] [blame] | 39 | if [ ! -L $JOURNAL_PATH ] |
| 40 | then |
| 41 | if [ -d $JOURNAL_PATH ] |
| 42 | then |
| 43 | mv $JOURNAL_PATH/* $MDSAL_PATH/journal |
guillaume.lambert | 7bf306e | 2021-09-08 12:03:22 +0200 | [diff] [blame^] | 44 | rm -f $JOURNAL_PATH |
Dan Timoney | 2ee28a5 | 2021-01-15 16:39:50 -0500 | [diff] [blame] | 45 | fi |
| 46 | ln -s $MDSAL_PATH/journal $JOURNAL_PATH |
| 47 | fi |
| 48 | |
| 49 | if [ ! -L $SNAPSHOTS_PATH ] |
| 50 | then |
| 51 | if [ -d $SNAPSHOTS_PATH ] |
| 52 | then |
| 53 | mv $SNAPSHOTS_PATH/* $MDSAL_PATH/snapshots |
guillaume.lambert | 7bf306e | 2021-09-08 12:03:22 +0200 | [diff] [blame^] | 54 | rm -f $SNAPSHOTS_PATH |
Dan Timoney | 2ee28a5 | 2021-01-15 16:39:50 -0500 | [diff] [blame] | 55 | fi |
| 56 | ln -s $MDSAL_PATH/snapshots $SNAPSHOTS_PATH |
| 57 | fi |