R7 tag/path update
[dcaegen2/deployments.git] / cm-container / scripts / set-resolver-rules.sh
1 #!/bin/bash
2 # ============LICENSE_START=======================================================
3 # org.onap.dcae
4 # ================================================================================
5 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19
20 set -ex
21 EXTRA_RULES=/opt/manager/extra-resolver-rules
22 PY=/opt/manager/env/bin/python
23 # Wait for Cloudify Manager to come up
24 while ! /scripts/cloudify-ready.sh
25 do
26     echo "Waiting for CM to come up"
27     sleep 15
28 done
29
30 if [[ -s ${EXTRA_RULES} && -r ${EXTRA_RULES} ]]
31 then
32     # Capture current resolver rules and append to new rules
33     ${PY} /scripts/update_resolver.py --dry-run | egrep "^-" >> ${EXTRA_RULES}
34
35     # Update the resolver rules
36     ${PY} /scripts/update_resolver.py ${EXTRA_RULES}
37     systemctl restart cloudify-restservice.service
38     mv ${EXTRA_RULES} ${EXTRA_RULES}-loaded
39 fi