Fatih Degirmenci | 20a21de | 2020-03-07 11:05:51 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # ============LICENSE_START======================================================= |
| 4 | # Copyright (C) 2019 The Nordix Foundation. All rights reserved. |
| 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ============LICENSE_END========================================================= |
| 20 | |
| 21 | set -o errexit |
| 22 | set -o pipefail |
| 23 | |
| 24 | # NOTE: due to stack creation issues on public cloud, installation of python |
| 25 | # and python-dev has been moved out of heat templates. The reason for this is |
| 26 | # that during initial boot of the instances, Ansible prerequisites python and |
| 27 | # python-dev are installed using boot script. Due to the reasons we can not |
| 28 | # explain and perhaps because of network issues on public cloud, apt fails, |
| 29 | # complaining about corruption - checksum mismatch. In turn, problematic |
| 30 | # instance(s) can not send completion signal at the end of boot phase, resulting |
| 31 | # in timeouts in stack creation thus complete failure of deployments. |
| 32 | |
| 33 | source /etc/os-release || source /usr/lib/os-release |
| 34 | case ${ID,,} in |
| 35 | ubuntu|debian) |
| 36 | export DEBIAN_FRONTEND=noninteractive |
| 37 | sudo -H -E apt update -q=3 |
| 38 | sudo -H -E apt install -y -q=3 python python-dev |
| 39 | ;; |
| 40 | rhel|fedora|centos) |
| 41 | sudo yum install -y python python-devel |
| 42 | ;; |
| 43 | *) |
| 44 | echo "ERROR: Supported package manager not found. Supported: apt, dnf, yum, zypper" |
| 45 | exit 1 |
| 46 | ;; |
| 47 | esac |
| 48 | |
| 49 | # vim: set ts=2 sw=2 expandtab: |