Blame Automation/centos-art.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 615395
########################################################################
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 0de111
#   centos-art.sh -- The CentOS artwork repository automation tool.
Alain Reguera Delgado 615395
#
Alain Reguera Delgado 615395
#   Written by: 
Alain Reguera Delgado 615395
#   * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
Alain Reguera Delgado 615395
#     Key fingerprint = D67D 0F82 4CBD 90BC 6421  DF28 7CCE 757C 17CA 3951
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 615395
########################################################################
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 0de111
# Verify absolute path to the working directory. This information is
Alain Reguera Delgado 0de111
# critical for centos-art.sh script to work.
Alain Reguera Delgado 954d94
if [[ ! ${TCAR_BASEDIR} ]] || [[ -z ${TCAR_BASEDIR} ]] \
Alain Reguera Delgado 954d94
    || [[ ! -d ${TCAR_BASEDIR} ]];then
Alain Reguera Delgado 954d94
    echo -n "Enter repository's absolute path: "
Alain Reguera Delgado 954d94
    read TCAR_BASEDIR
Alain Reguera Delgado 35ce4d
    declare -xr TCAR_BASEDIR
Alain Reguera Delgado 0de111
fi
Alain Reguera Delgado 0de111
Alain Reguera Delgado 0de111
# Define automation scripts base directory. We need to define it here
Alain Reguera Delgado 0de111
# in order to reach the configuration file. All other environment
Alain Reguera Delgado 0de111
# variable definitions must be declared inside the configuration file.
Alain Reguera Delgado 954d94
if [[ -d ${TCAR_BASEDIR} ]];then
Alain Reguera Delgado 954d94
    declare -xr TCAR_SCRIPT_BASEDIR=${TCAR_BASEDIR}/Automation
Alain Reguera Delgado 954d94
else
Alain Reguera Delgado 954d94
    exit 1
Alain Reguera Delgado 954d94
fi
Alain Reguera Delgado 0de111
Alain Reguera Delgado 615395
# Initialize default configuration values.
Alain Reguera Delgado 954d94
if [[ -d ${TCAR_SCRIPT_BASEDIR} ]];then
Alain Reguera Delgado affd55
    . ${TCAR_SCRIPT_BASEDIR}/centos-art.conf.sh
Alain Reguera Delgado 954d94
else
Alain Reguera Delgado 954d94
    exit 1
Alain Reguera Delgado 954d94
fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 615395
# Initialize user-specific configuration values.
Alain Reguera Delgado 615395
if [[ -f ${TCAR_USER_CONFIG} ]];then
Alain Reguera Delgado 615395
    . ${TCAR_USER_CONFIG}
Alain Reguera Delgado 8f60cb
fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 954d94
case ${1} in
Alain Reguera Delgado 954d94
Alain Reguera Delgado 954d94
    --help )
Alain Reguera Delgado 5824c8
        # Print script's help.
Alain Reguera Delgado 954d94
        ${TCAR_MANUAL_READER} ${TCAR_SCRIPT_NAME}
Alain Reguera Delgado 954d94
        ;;
Alain Reguera Delgado 954d94
Alain Reguera Delgado 954d94
    --version )
Alain Reguera Delgado 5824c8
        # Print script's name and version.
Alain Reguera Delgado 786ac0
        echo "`eval_gettext "Running \\\${TCAR_SCRIPT_NAME} (v\\\${TCAR_SCRIPT_VERSION})."`"
Alain Reguera Delgado 954d94
        ;;
Alain Reguera Delgado 954d94
Alain Reguera Delgado 954d94
    * )
Alain Reguera Delgado 5824c8
Alain Reguera Delgado 5824c8
        # Export script's environment functions.
Alain Reguera Delgado 5824c8
        for SCRIPT_FILE in $(ls ${TCAR_SCRIPT_BASEDIR}/Scripts/*.sh);do
Alain Reguera Delgado 5824c8
            if [[ -x ${SCRIPT_FILE} ]];then
Alain Reguera Delgado 5824c8
                . ${SCRIPT_FILE}
Alain Reguera Delgado 5824c8
                export -f $(grep '^function ' ${SCRIPT_FILE} | cut -d' ' -f2)
Alain Reguera Delgado 5824c8
            else
Alain Reguera Delgado 5824c8
                echo "${SCRIPT_FILE} `gettext "has not execution rights."`"
Alain Reguera Delgado 5824c8
            fi
Alain Reguera Delgado 5824c8
        done
Alain Reguera Delgado 5824c8
Alain Reguera Delgado 5824c8
        # Trap signals in order to terminate the script execution
Alain Reguera Delgado 5824c8
        # correctly (e.g., removing all temporal files before
Alain Reguera Delgado 5824c8
        # leaving).  Trapping the exit signal seems to be enough by
Alain Reguera Delgado 5824c8
        # now, since it is always present as part of the script
Alain Reguera Delgado 5824c8
        # execution flow. Each time the centos-art.sh script is
Alain Reguera Delgado 5824c8
        # executed it will inevitably end with an EXIT signal at some
Alain Reguera Delgado 5824c8
        # point of its execution, even if it is interrupted in the
Alain Reguera Delgado 5824c8
        # middle of its execution (e.g., through `Ctrl+C').
Alain Reguera Delgado eb3010
        trap tcar_terminateScriptExecution 0
Alain Reguera Delgado 5824c8
Alain Reguera Delgado 5824c8
        # Export script's module environment.
Alain Reguera Delgado 9c1e5e
        tcar_setModuleEnvironment "${@}"
Alain Reguera Delgado 954d94
        ;;
Alain Reguera Delgado 5824c8
Alain Reguera Delgado 954d94
esac
Alain Reguera Delgado 954d94
Alain Reguera Delgado 954d94
exit 0