aboutsummaryrefslogtreecommitdiff
path: root/bigtop_toolchain/bin/puppetize.sh
blob: a9d7798e62b914bd22432d2efb45c1186f3f6d80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Use /etc/os-release to determine Linux Distro

if [ -f /etc/os-release ]; then
    . /etc/os-release
else
    if [ -f /etc/redhat-release ]; then
	if grep "CentOS release 6" /etc/redhat-release >/dev/null ; then
	    ID=centos
	    VERSION_ID=6
	fi
    else
	echo "Unknown Linux Distribution."
	exit 1
    fi
fi

case ${ID}-${VERSION_ID} in
    fedora-25*)
        dnf -y install yum-utils
        dnf -y update 
        dnf -y install hostname findutils curl sudo unzip wget puppet
        ;;
    ubuntu-14.04)
	apt-get update
	apt-get -y install wget
	if [ $HOSTTYPE = "x86_64" ] ; then
	  # BIGTOP-2003. A workaround to install newer hiera to get rid of hiera 1.3.0 bug.
	  wget -O /tmp/puppetlabs-release-trusty.deb https://apt.puppetlabs.com/puppetlabs-release-trusty.deb && dpkg -i /tmp/puppetlabs-release-trusty.deb
	  rm -f /tmp/puppetlabs-release-trusty.deb
	  apt-get update
        fi
	apt-get -y install curl sudo unzip puppet software-properties-common
	;;
    ubuntu-*)
	apt-get update
	apt-get -y install curl sudo unzip wget puppet software-properties-common
	;;
    debian-8*)
	apt-get update
	apt-get -y install wget
	# BIGTOP-2523. in order to install puppet 3.8 we need to get it from puppet repo
	wget -O /tmp/puppetlabs-release-trusty.deb https://apt.puppetlabs.com/puppetlabs-release-trusty.deb && dpkg -i /tmp/puppetlabs-release-trusty.deb
	rm -f /tmp/puppetlabs-release-trusty.deb
	apt-get update
	apt-get -y install curl sudo unzip puppet
	;;
    opensuse-*)
	zypper --gpg-auto-import-keys install -y curl sudo unzip wget puppet suse-release ca-certificates-mozilla net-tools tar
	;;
    centos-6*)
        rpm -ivh http://yum.puppetlabs.com/puppetlabs-release-el-6.noarch.rpm
	yum -y install curl sudo unzip wget puppet tar
	;;
    centos-7*)
        rpm -ivh http://yum.puppetlabs.com/puppetlabs-release-el-7.noarch.rpm
	yum -y install hostname curl sudo unzip wget puppet
	;;
    *)
	echo "Unsupported OS ${ID}-${VERSION_ID}."
	exit 1
esac

puppet module install puppetlabs-stdlib

case ${ID} in
   debian|ubuntu)
      puppet module install puppetlabs-apt;;
esac