Blame Automation/centos-art.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 615395
########################################################################
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 615395
#   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 615395
# Initialize default configuration values.
Alain Reguera Delgado 615395
. $(dirname ${0})/centos-art.conf
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 8f60cb
# Initialize internationalization through GNU gettext.
Alain Reguera Delgado 8f60cb
. gettext.sh
Alain Reguera Delgado 615395
declare -xr TEXTDOMAIN=${TCAR_CLI_NAME}
Alain Reguera Delgado 615395
declare -xr TEXTDOMAINDIR=${TCAR_CLI_L10NDIR}
Alain Reguera Delgado 615395
Alain Reguera Delgado 615395
# Initialize the centos-art.sh script command-line interface.
Alain Reguera Delgado 615395
if [[ -x ${TCAR_CLI_INIT_FILE} ]];then
Alain Reguera Delgado 615395
    . ${TCAR_CLI_INIT_FILE}; export -f ${TCAR_CLI_INIT_FUNCTION}
Alain Reguera Delgado 615395
    ${TCAR_CLI_INIT_FUNCTION} "$@"
Alain Reguera Delgado 615395
else
Alain Reguera Delgado 615395
    echo "${TCAR_CLI_INIT_FILE} `gettext "has not execution rights."`"
Alain Reguera Delgado 8f60cb
fi