Blame Automation/Scripts/tcar_unsetModuleEnvironment.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 615395
######################################################################
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 06ab0f
#   tcar_unsetModuleEnvironment.sh -- This function unsets
Alain Reguera Delgado 06ab0f
#   functionalities from centos-art.sh script execution environment.
Alain Reguera Delgado 615395
#
Alain Reguera Delgado 0e5ba0
#   Written by:
Alain Reguera Delgado 615395
#   * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 0e5ba0
# Copyright (C) 2009-2013 The CentOS Artwork SIG
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 e85bd4
function tcar_unsetModuleEnvironment {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 0fdaad
    # Define gettext-specific variables locally, to provide
Alain Reguera Delgado 0fdaad
    # per-function localization.
Alain Reguera Delgado 0fdaad
    local TEXTDOMAIN="${FUNCNAME}.sh"
Alain Reguera Delgado 0fdaad
    local TEXTDOMAINDIR="${TCAR_SCRIPT_BASEDIR}/Scripts/Locales"
Alain Reguera Delgado 0fdaad
Alain Reguera Delgado 615395
    # Verify suffix value used to retrieve function files.
Alain Reguera Delgado 06ab0f
    if [[ -z ${TCAR_MODULE_NAME} ]];then
Alain Reguera Delgado eb3010
        tcar_printMessage "`gettext "The export id was not provided."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 06ab0f
    # Define list of format-specific functionalities. This is the list
Alain Reguera Delgado 06ab0f
    # of function definitions previously exported by
Alain Reguera Delgado 06ab0f
    # `tcar_setModuleEnvironmentScripts'.  Be sure to limit the list
Alain Reguera Delgado 06ab0f
    # to function names that start with the suffix specified only.
Alain Reguera Delgado 47843c
    local TCAR_MODULE_SCRIPT_FN=''
Alain Reguera Delgado 47843c
    local TCAR_MODULE_SCRIPT_FNS=$(declare -F | gawk '{ print $3 }' | egrep "^${TCAR_MODULE_NAME}")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Unset function names from current execution environment.
Alain Reguera Delgado 47843c
    for TCAR_MODULE_SCRIPT_FN in ${TCAR_MODULE_SCRIPT_FNS};do
Alain Reguera Delgado 47843c
        unset -f ${TCAR_MODULE_SCRIPT_FN}
Alain Reguera Delgado 47843c
        tcar_printMessage "unset -f : ${TCAR_MODULE_SCRIPT_FN}" --as-debugger-line
Alain Reguera Delgado 8f60cb
    done
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}