blob: d8a2025beab9daa9433ee94ba50ec5f849f6eefd [file] [log] [blame]
Dan Timoney2ee28a52021-01-15 16:39:50 -05001#!/bin/sh
2
3###
4# ============LICENSE_START=======================================================
5# ONAP : SDN-C
6# ================================================================================
guillaume.lambert7bf306e2021-09-08 12:03:22 +02007# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
Dan Timoney2ee28a52021-01-15 16:39:50 -05008# ================================================================================
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
24if [ "$MDSAL_PATH" = "" ]
25then
26 MDSAL_PATH=/opt/opendaylight/mdsal
27fi
28
Dan Timoney2ee28a52021-01-15 16:39:50 -050029if [ "$JOURNAL_PATH" = "" ]
30then
31 JOURNAL_PATH=/opt/opendaylight/journal
32fi
33
34if [ "$SNAPSHOTS_PATH" = "" ]
35then
36 SNAPSHOTS_PATH=/opt/opendaylight/snapshots
37fi
38
Dan Timoney2ee28a52021-01-15 16:39:50 -050039if [ ! -L $JOURNAL_PATH ]
40then
41 if [ -d $JOURNAL_PATH ]
42 then
43 mv $JOURNAL_PATH/* $MDSAL_PATH/journal
guillaume.lambert7bf306e2021-09-08 12:03:22 +020044 rm -f $JOURNAL_PATH
Dan Timoney2ee28a52021-01-15 16:39:50 -050045 fi
46 ln -s $MDSAL_PATH/journal $JOURNAL_PATH
47fi
48
49if [ ! -L $SNAPSHOTS_PATH ]
50then
51 if [ -d $SNAPSHOTS_PATH ]
52 then
53 mv $SNAPSHOTS_PATH/* $MDSAL_PATH/snapshots
guillaume.lambert7bf306e2021-09-08 12:03:22 +020054 rm -f $SNAPSHOTS_PATH
Dan Timoney2ee28a52021-01-15 16:39:50 -050055 fi
56 ln -s $MDSAL_PATH/snapshots $SNAPSHOTS_PATH
57fi