2012-10-17 14:02:09 +01:00
|
|
|
#!/bin/bash -
|
|
|
|
#===============================================================================
|
|
|
|
# vim: softtabstop=4 shiftwidth=4 expandtab fenc=utf-8 spell spelllang=en
|
|
|
|
#===============================================================================
|
|
|
|
#
|
|
|
|
# FILE: bootstrap-salt-minion.sh
|
|
|
|
#
|
2012-10-17 16:28:43 +01:00
|
|
|
# DESCRIPTION: Bootstrap salt installation for various systems/distributions
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
2012-10-17 16:28:43 +01:00
|
|
|
# BUGS: https://github.com/saltstack/salty-vagrant/issues
|
2012-10-17 14:02:09 +01:00
|
|
|
# AUTHOR: Pedro Algarvio (s0undt3ch), pedro@algarvio.me
|
2012-10-17 16:28:43 +01:00
|
|
|
# Alec Koumjian (akoumjian)
|
|
|
|
# ORGANIZATION: Salt Stack (saltstack.org)
|
2012-10-17 14:02:09 +01:00
|
|
|
# CREATED: 10/15/2012 09:49:37 PM WEST
|
|
|
|
#===============================================================================
|
|
|
|
set -o nounset # Treat unset variables as an error
|
|
|
|
ScriptVersion="1.0"
|
2012-10-18 22:18:07 +01:00
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# LET THE BLACK MAGIC BEGIN!!!!
|
|
|
|
#===============================================================================
|
|
|
|
|
2012-10-17 16:07:33 +01:00
|
|
|
#=== FUNCTION ================================================================
|
|
|
|
# NAME: usage
|
|
|
|
# DESCRIPTION: Display usage information.
|
|
|
|
#===============================================================================
|
|
|
|
usage() {
|
|
|
|
cat << EOT
|
|
|
|
|
2012-10-19 12:22:59 +01:00
|
|
|
Usage : ${0##/*/} [options] <install-type> <install-type-args>
|
2012-10-17 16:07:33 +01:00
|
|
|
|
|
|
|
Installation types:
|
|
|
|
- stable (default)
|
2012-10-19 12:22:59 +01:00
|
|
|
- daily (ubuntu specific)
|
2012-10-17 16:07:33 +01:00
|
|
|
- git
|
|
|
|
|
2012-10-19 12:22:59 +01:00
|
|
|
Examples:
|
|
|
|
$ ${0##/*/}
|
|
|
|
$ ${0##/*/} stable
|
|
|
|
$ ${0##/*/} daily
|
|
|
|
$ ${0##/*/} git
|
|
|
|
$ ${0##/*/} git develop
|
|
|
|
$ ${0##/*/} git 8c3fadf15ec183e5ce8c63739850d543617e4357
|
|
|
|
|
2012-10-17 16:07:33 +01:00
|
|
|
Options:
|
|
|
|
-h|help Display this message
|
|
|
|
-v|version Display script version
|
|
|
|
EOT
|
|
|
|
} # ---------- end of function usage ----------
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# Handle command line arguments
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
2012-10-19 11:24:05 +01:00
|
|
|
while getopts ":hv" opt
|
2012-10-17 16:07:33 +01:00
|
|
|
do
|
|
|
|
case $opt in
|
|
|
|
|
|
|
|
h|help ) usage; exit 0 ;;
|
|
|
|
|
|
|
|
v|version ) echo "$0 -- Version $ScriptVersion"; exit 0 ;;
|
|
|
|
|
2012-10-18 11:41:35 +01:00
|
|
|
\? ) echo "\n Option does not exist : $OPTARG\n"
|
2012-10-17 16:07:33 +01:00
|
|
|
usage; exit 1 ;;
|
|
|
|
|
|
|
|
esac # --- end of case ---
|
|
|
|
done
|
|
|
|
shift $(($OPTIND-1))
|
2012-10-17 14:02:09 +01:00
|
|
|
|
|
|
|
# Define installation type
|
|
|
|
if [ "$#" -eq 0 ];then
|
|
|
|
ITYPE="stable"
|
|
|
|
else
|
|
|
|
ITYPE=$1
|
2012-10-19 12:22:59 +01:00
|
|
|
shift
|
2012-10-17 14:02:09 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$ITYPE" != "stable" -a "$ITYPE" != "daily" -a "$ITYPE" != "git" ]; then
|
2012-10-18 11:41:35 +01:00
|
|
|
echo " ERROR: Installation type \"$ITYPE\" is not known..."
|
2012-10-17 14:02:09 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
2012-09-06 23:17:02 +10:00
|
|
|
|
2012-10-19 12:22:59 +01:00
|
|
|
if [ $ITYPE = "git" ]; then
|
|
|
|
if [ "$#" -eq 0 ];then
|
|
|
|
GIT_REV="master"
|
|
|
|
else
|
|
|
|
GIT_REV=$1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$#" -gt 0 ]; then
|
|
|
|
usage
|
|
|
|
echo
|
|
|
|
echo " * ERROR: Too many arguments."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-10-17 14:02:09 +01:00
|
|
|
# Root permissions are required to run this script
|
|
|
|
if [ $(whoami) != "root" ] ; then
|
2012-10-18 11:41:35 +01:00
|
|
|
echo " * ERROR: Salt requires root privileges to install. Please re-run this script as root."
|
2012-09-06 23:17:02 +10:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 17:28:00 +01:00
|
|
|
# Define our logging file and pipe paths
|
2012-10-18 22:18:07 +01:00
|
|
|
LOGFILE="/tmp/$(basename $0 | sed s/.sh/.log/g )"
|
|
|
|
LOGPIPE="/tmp/$(basename $0 | sed s/.sh/.logpipe/g )"
|
2012-10-17 14:02:09 +01:00
|
|
|
|
|
|
|
# Remove the logging pipe when the script exits
|
|
|
|
trap "rm -f $LOGPIPE" EXIT
|
|
|
|
|
|
|
|
# Create our logging pipe
|
|
|
|
mknod $LOGPIPE p
|
|
|
|
|
|
|
|
# What ever is written to the logpipe gets written to the logfile
|
|
|
|
tee < $LOGPIPE $LOGFILE &
|
|
|
|
|
|
|
|
# Close STDOUT, reopen it directing it to the logpipe
|
|
|
|
exec 1>&-
|
|
|
|
exec 1>$LOGPIPE
|
|
|
|
# Close STDERR, reopen it directing it to the logpipe
|
|
|
|
exec 2>&-
|
|
|
|
exec 2>$LOGPIPE
|
|
|
|
|
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
#--- FUNCTION ----------------------------------------------------------------
|
|
|
|
# NAME: __gather_os_info
|
2012-10-18 22:30:20 +01:00
|
|
|
# DESCRIPTION: Discover operating system information
|
2012-10-18 22:18:07 +01:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
__gather_os_info() {
|
|
|
|
OS_NAME=$(uname -s 2>/dev/null)
|
|
|
|
OS_NAME_L=$( echo $OS_NAME | tr '[:upper:]' '[:lower:]' )
|
|
|
|
OS_VERSION=$(uname -r)
|
|
|
|
OS_VERSION_L=$( echo $OS_VERSION | tr '[:upper:]' '[:lower:]' )
|
|
|
|
MACHINE=$(uname -m 2>/dev/null || uname -p 2>/dev/null || echo "unknown")
|
2012-10-17 14:02:09 +01:00
|
|
|
}
|
2012-10-18 22:18:07 +01:00
|
|
|
__gather_os_info
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-09-06 23:17:02 +10:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
#--- FUNCTION ----------------------------------------------------------------
|
|
|
|
# NAME: __gather_linux_system_info
|
2012-10-18 22:30:20 +01:00
|
|
|
# DESCRIPTION: Discover Linux system information
|
2012-10-18 22:18:07 +01:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
__gather_linux_system_info() {
|
2012-10-19 12:07:14 +01:00
|
|
|
DISTRO_NAME=""
|
|
|
|
DISTRO_VERSION=""
|
|
|
|
|
|
|
|
if [ -f /etc/lsb-release ]; then
|
|
|
|
DISTRO_NAME=$(grep DISTRIB_ID /etc/lsb-release | sed -e 's/.*=//')
|
|
|
|
DISTRO_VERSION=$(grep DISTRIB_RELEASE /etc/lsb-release | sed -e 's/.*=//')
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "x$DISTRO_NAME" != "x" -a "x$DISTRO_VERSION" != "x" ]; then
|
|
|
|
# We already have the distribution name and version
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
for rsource in $(
|
2012-10-18 22:27:38 +01:00
|
|
|
cd /etc && /bin/ls *[_-]release *[_-]version 2>/dev/null | env -i sort | \
|
|
|
|
sed -e '/^redhat-release$/d' -e '/^lsb-release$/d'; \
|
|
|
|
echo redhat-release lsb-release
|
2012-10-18 23:54:58 +01:00
|
|
|
); do
|
2012-10-18 22:27:38 +01:00
|
|
|
|
|
|
|
[ ! -f "/etc/${rsource}" ] && continue
|
2012-10-18 23:54:58 +01:00
|
|
|
|
2012-10-18 22:27:38 +01:00
|
|
|
n=$(echo ${rsource} | sed -e 's/[_-]release$//' -e 's/[_-]version$//')
|
|
|
|
v=$(
|
|
|
|
(grep VERSION /etc/${rsource}; cat /etc/${rsource}) | grep '[0-9]' | sed -e 'q' |\
|
|
|
|
sed -e 's/^/#/' \
|
|
|
|
-e 's/^#[^0-9]*\([0-9][0-9]*\.[0-9][0-9]*\)\(\.[0-9][0-9]*\).*$/\1[\2]/' \
|
|
|
|
-e 's/^#[^0-9]*\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/' \
|
|
|
|
-e 's/^#[^0-9]*\([0-9][0-9]*\).*$/\1/' \
|
|
|
|
-e 's/^#.*$//'
|
|
|
|
)
|
|
|
|
case $(echo ${n} | tr '[:upper:]' '[:lower:]') in
|
|
|
|
redhat )
|
|
|
|
if [ ".$(egrep '(Red Hat Enterprise Linux|CentOS)' /etc/${rsource})" != . ]; then
|
|
|
|
n="<R>ed <H>at <E>nterprise <L>inux"
|
|
|
|
else
|
|
|
|
n="<R>ed <H>at <L>inux"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
arch ) n="Arch" ;;
|
|
|
|
centos ) n="CentOS" ;;
|
|
|
|
debian ) n="Debian" ;;
|
|
|
|
ubuntu ) n="Ubuntu" ;;
|
|
|
|
fedora ) n="Fedora" ;;
|
|
|
|
suse ) n="SUSE" ;;
|
|
|
|
mandrake*|mandriva ) n="Mandriva" ;;
|
|
|
|
gentoo ) n="Gentoo" ;;
|
|
|
|
slackware ) n="Slackware" ;;
|
|
|
|
turbolinux ) n="TurboLinux" ;;
|
|
|
|
unitedlinux ) n="UnitedLinux" ;;
|
|
|
|
* ) n="${n}" ;
|
|
|
|
esac
|
|
|
|
DISTRO_NAME=$n
|
|
|
|
DISTRO_VERSION=$v
|
|
|
|
break
|
2012-10-18 22:18:07 +01:00
|
|
|
done
|
|
|
|
}
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
|
|
|
|
#--- FUNCTION ----------------------------------------------------------------
|
|
|
|
# NAME: __gather_sunos_system_info
|
|
|
|
# DESCRIPTION: Discover SunOS system info
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
__gather_sunos_system_info() {
|
|
|
|
DISTRO_NAME="Solaris"
|
|
|
|
DISTRO_VERSION=$(
|
|
|
|
echo "${OS_VERSION}" |
|
|
|
|
sed -e 's;^4\.;1.;' \
|
|
|
|
-e 's;^5\.\([0-6]\)[^0-9]*$;2.\1;' \
|
|
|
|
-e 's;^5\.\([0-9][0-9]*\).*;\1;'
|
|
|
|
)
|
2012-10-17 14:02:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
#--- FUNCTION ----------------------------------------------------------------
|
|
|
|
# NAME: __gather_bsd_system_info
|
2012-10-18 22:30:20 +01:00
|
|
|
# DESCRIPTION: Discover OpenBSD, NetBSD and FreeBSD systems information
|
2012-10-18 22:18:07 +01:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
__gather_bsd_system_info() {
|
|
|
|
DISTRO_NAME=${OS_NAME}
|
|
|
|
DISTRO_VERSION=$(echo "${OS_VERSION}" | sed -e 's;[()];;' -e 's/\(-.*\)$/[\1]/')
|
|
|
|
}
|
2012-10-17 14:02:09 +01:00
|
|
|
|
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
#--- FUNCTION ----------------------------------------------------------------
|
|
|
|
# NAME: __gather_system_info
|
2012-10-18 22:30:20 +01:00
|
|
|
# DESCRIPTION: Discover which system and distribution we are running.
|
2012-10-18 22:18:07 +01:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
__gather_system_info() {
|
|
|
|
case ${OS_NAME_L} in
|
|
|
|
linux )
|
|
|
|
__gather_linux_system_info
|
|
|
|
;;
|
|
|
|
sunos )
|
|
|
|
__gather_sunos_system_info
|
|
|
|
;;
|
|
|
|
openbsd|freebsd|netbsd )
|
|
|
|
__gather_bsd_system_info
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo " * ERROR: $OS_NAME not supported.";
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
}
|
2012-10-17 14:02:09 +01:00
|
|
|
|
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
#--- FUNCTION ----------------------------------------------------------------
|
|
|
|
# NAME: __function_defined
|
|
|
|
# DESCRIPTION: Checks if a function is defined within this scripts scope
|
|
|
|
# PARAMETERS: function name
|
|
|
|
# RETURNS: 0 or 1 as in defined or not defined
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
__function_defined() {
|
|
|
|
FUNC_NAME=$1
|
|
|
|
if [ ${DISTRO_NAME} = "centos" ]; then
|
|
|
|
if typeset -f $FUNC_NAME &>/dev/null ; then
|
|
|
|
echo " * INFO: Found function $FUNC_NAME"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
elif [ ${DISTRO_NAME} = "ubuntu" ]; then
|
|
|
|
if $( type ${FUNC_NAME} | grep -q 'shell function' ); then
|
|
|
|
echo " * INFO: Found function $FUNC_NAME"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
# Last resorts try POSIXLY_CORRECT or not
|
|
|
|
elif test -n "${POSIXLY_CORRECT+yes}"; then
|
|
|
|
if typeset -f $FUNC_NAME &>/dev/null ; then
|
|
|
|
echo " * INFO: Found function $FUNC_NAME"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# Arch linux seems to fall here
|
|
|
|
if $( type ${FUNC_NAME} &>/dev/null ) ; then
|
|
|
|
echo " * INFO: Found function $FUNC_NAME"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo " * INFO: $FUNC_NAME not found...."
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
__gather_system_info
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-19 12:22:59 +01:00
|
|
|
echo " * System Information:"
|
|
|
|
echo " OS Name: ${OS_NAME}"
|
|
|
|
echo " OS Version: ${OS_VERSION}"
|
|
|
|
echo " Machine: ${MACHINE}"
|
|
|
|
echo " Distribution: ${DISTRO_NAME} ${DISTRO_VERSION}"
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
|
2012-10-18 23:54:58 +01:00
|
|
|
# Simplify version naming on functions
|
|
|
|
if [ "x${DISTRO_VERSION}" = "x" ]; then
|
|
|
|
DISTRO_VERSION_NO_DOTS=""
|
|
|
|
else
|
|
|
|
DISTRO_VERSION_NO_DOTS="_$(echo $DISTRO_VERSION | tr -d '.')"
|
|
|
|
fi
|
|
|
|
# Simplify distro name naming on functions
|
|
|
|
DISTRO_NAME_L=$(echo $DISTRO_NAME | tr '[:upper:]' '[:lower:]')
|
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
|
|
|
# Distribution install functions
|
|
|
|
#
|
|
|
|
# In order to install salt for a distribution you need to define:
|
|
|
|
#
|
|
|
|
# To Install Dependencies, which is required, one of:
|
|
|
|
# 1. install_<distro>_<distro_version>_<install_type>_deps
|
|
|
|
# 2. install_<distro>_<distro_version>_deps
|
2012-10-18 17:28:00 +01:00
|
|
|
# 3. install_<distro>_<install_type>_deps
|
2012-10-19 13:12:22 +01:00
|
|
|
# 4. install_<distro>_deps
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# To install salt, which, of course, is required, one of:
|
|
|
|
# 1. install_<distro>_<distro_version>_<install_type>
|
|
|
|
# 1. install_<distro>_<install_type>
|
|
|
|
#
|
2012-10-18 17:28:00 +01:00
|
|
|
#
|
2012-10-17 14:02:09 +01:00
|
|
|
# And optionally, define a post install function, one of:
|
|
|
|
# 1. install_<distro>_<distro_versions>_<install_type>_post
|
|
|
|
# 2. install_<distro>_<distro_versions>_post
|
2012-10-18 17:28:00 +01:00
|
|
|
# 3. install_<distro>_<install_type>_post
|
|
|
|
# 4. install_<distro>_post
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
|
|
|
# Ubuntu Install Functions
|
|
|
|
#
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
install_ubuntu_deps() {
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install python-software-properties
|
|
|
|
add-apt-repository -y ppa:saltstack/salt
|
|
|
|
apt-get update
|
|
|
|
}
|
|
|
|
|
|
|
|
install_ubuntu_1004_deps() {
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install python-software-properties
|
|
|
|
add-apt-repository ppa:saltstack/salt
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install salt-minion
|
|
|
|
}
|
|
|
|
|
|
|
|
install_ubuntu_1110_deps() {
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install python-software-properties
|
|
|
|
add-apt-repository -y 'deb http://us.archive.ubuntu.com/ubuntu/ oneiric universe'
|
|
|
|
add-apt-repository -y ppa:saltstack/salt
|
|
|
|
}
|
|
|
|
|
2012-10-19 11:08:37 -07:00
|
|
|
install_ubuntu_daily_deps() {
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install python-software-properties
|
|
|
|
add-apt-repository -y ppa:saltstack/salt-daily
|
|
|
|
apt-get update
|
|
|
|
}
|
|
|
|
|
2012-10-17 14:02:09 +01:00
|
|
|
install_ubuntu_1110_post() {
|
|
|
|
add-apt-repository -y --remove 'deb http://us.archive.ubuntu.com/ubuntu/ oneiric universe'
|
|
|
|
}
|
|
|
|
|
|
|
|
install_ubuntu_stable() {
|
|
|
|
apt-get -y install salt-minion
|
|
|
|
}
|
2012-10-19 11:08:37 -07:00
|
|
|
|
|
|
|
install_ubuntu_daily() {
|
|
|
|
apt-get -y install salt-minion
|
|
|
|
}
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
|
|
|
# End of Ubuntu Install Functions
|
|
|
|
#
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
#
|
|
|
|
# Debian Install Functions
|
|
|
|
#
|
|
|
|
install_debian_60_stable_deps() {
|
2012-10-18 17:28:00 +01:00
|
|
|
echo "deb http://backports.debian.org/debian-backports squeeze-backports main" >> \
|
|
|
|
/etc/apt/sources.list.d/backports.list
|
2012-10-17 14:02:09 +01:00
|
|
|
apt-get update
|
|
|
|
}
|
|
|
|
|
|
|
|
install_debian_60_stable() {
|
|
|
|
apt-get -t squeeze-backports -y install salt-minion
|
|
|
|
}
|
|
|
|
#
|
|
|
|
# Ended Debian Install Functions
|
|
|
|
#
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 16:07:33 +01:00
|
|
|
#
|
|
|
|
# CentOS Install Functions
|
|
|
|
#
|
|
|
|
install_centos_63_stable_deps() {
|
|
|
|
rpm -Uvh --force http://mirrors.kernel.org/fedora-epel/6/x86_64/epel-release-6-7.noarch.rpm
|
|
|
|
yum -y update
|
|
|
|
}
|
|
|
|
|
|
|
|
install_centos_63_stable() {
|
|
|
|
yum -y install salt-minion --enablerepo=epel-testing
|
|
|
|
}
|
|
|
|
|
|
|
|
install_centos_63_stable_post() {
|
|
|
|
/sbin/chkconfig salt-minion on
|
|
|
|
salt-minion start &
|
|
|
|
}
|
|
|
|
#
|
|
|
|
# Ended CentOS Install Functions
|
|
|
|
#
|
2012-10-18 22:18:07 +01:00
|
|
|
##############################################################################
|
2012-10-17 14:02:09 +01:00
|
|
|
|
2012-10-18 22:18:07 +01:00
|
|
|
#=============================================================================
|
|
|
|
# LET'S PROCEED WITH OUR INSTALLATION
|
|
|
|
#=============================================================================
|
2012-10-18 17:28:00 +01:00
|
|
|
# Let's get the dependencies install function
|
2012-10-18 23:54:58 +01:00
|
|
|
DEP_FUNC_NAMES="install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_${ITYPE}_deps"
|
|
|
|
DEP_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_deps"
|
|
|
|
DEP_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}_${ITYPE}_deps"
|
|
|
|
DEP_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}_deps"
|
2012-10-18 17:28:00 +01:00
|
|
|
|
|
|
|
DEPS_INSTALL_FUNC="null"
|
|
|
|
for DEP_FUNC_NAME in $DEP_FUNC_NAMES; do
|
|
|
|
if __function_defined $DEP_FUNC_NAME; then
|
|
|
|
DEPS_INSTALL_FUNC=$DEP_FUNC_NAME
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2012-10-17 14:02:09 +01:00
|
|
|
|
|
|
|
# Let's get the install function
|
2012-10-18 23:54:58 +01:00
|
|
|
INSTALL_FUNC_NAMES="install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_${ITYPE}"
|
|
|
|
INSTALL_FUNC_NAMES="$INSTALL_FUNC_NAMES install_${DISTRO_NAME_L}_${ITYPE}"
|
2012-10-18 17:28:00 +01:00
|
|
|
|
|
|
|
INSTALL_FUNC="null"
|
|
|
|
for FUNC_NAME in $INSTALL_FUNC_NAMES; do
|
|
|
|
if __function_defined $FUNC_NAME; then
|
|
|
|
INSTALL_FUNC=$FUNC_NAME
|
|
|
|
break
|
2012-09-06 23:17:02 +10:00
|
|
|
fi
|
2012-10-18 17:28:00 +01:00
|
|
|
done
|
2012-09-06 23:17:02 +10:00
|
|
|
|
2012-10-18 17:28:00 +01:00
|
|
|
|
|
|
|
# Let's get the dependencies install function
|
2012-10-18 23:54:58 +01:00
|
|
|
POST_FUNC_NAMES="install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_${ITYPE}_post"
|
|
|
|
POST_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_post"
|
|
|
|
POST_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}_${ITYPE}_post"
|
|
|
|
POST_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}_post"
|
2012-10-18 17:28:00 +01:00
|
|
|
|
|
|
|
POST_INSTALL_FUNC="null"
|
|
|
|
for FUNC_NAME in $POST_FUNC_NAMES; do
|
|
|
|
if __function_defined $FUNC_NAME; then
|
|
|
|
DEPS_INSTALL_FUNC=$FUNC_NAME
|
|
|
|
break
|
2012-10-17 14:02:09 +01:00
|
|
|
fi
|
2012-10-18 17:28:00 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
if [ $DEPS_INSTALL_FUNC = "null" ]; then
|
|
|
|
echo " * ERROR: No dependencies installation function found. Exiting..."
|
|
|
|
exit 1
|
2012-10-17 14:02:09 +01:00
|
|
|
fi
|
|
|
|
|
2012-10-18 17:28:00 +01:00
|
|
|
if [ $DEPS_INSTALL_FUNC = "null" ]; then
|
|
|
|
echo " * ERROR: No installation function found. Exiting..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2012-10-17 14:02:09 +01:00
|
|
|
# Install dependencies
|
2012-10-18 11:41:35 +01:00
|
|
|
echo " * Running ${DEPS_INSTALL_FUNC}()"
|
2012-10-17 14:02:09 +01:00
|
|
|
$DEPS_INSTALL_FUNC
|
|
|
|
|
|
|
|
# Install Salt
|
2012-10-18 11:41:35 +01:00
|
|
|
echo " * Running ${INSTALL_FUNC}()"
|
2012-10-17 14:02:09 +01:00
|
|
|
$INSTALL_FUNC
|
|
|
|
|
|
|
|
# Run any post install function
|
2012-10-18 17:28:00 +01:00
|
|
|
if [ "$POST_INSTALL_FUNC" != "null" ]; then
|
2012-10-18 11:41:35 +01:00
|
|
|
echo " * Running ${POST_INSTALL_FUNC}()"
|
2012-10-17 14:02:09 +01:00
|
|
|
$POST_INSTALL_FUNC
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Done!
|
2012-10-18 11:41:35 +01:00
|
|
|
echo " * Salt installed!"
|