Blame Automation/centos-art.sh-prepare/Scripts/prepare_getEnvars.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# prepare_getEnvars.sh -- This function outputs a brief description of
Alain Reguera Delgado 8f60cb
# relevant environment variables used by `centos-art.sh' script.
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 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function prepare_getEnvars {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local -a VARS
Alain Reguera Delgado 8f60cb
    local -a INFO
Alain Reguera Delgado 8f60cb
    local COUNT=0
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define name of environment variables used by centos-art.sh
Alain Reguera Delgado 8f60cb
    # script.
Alain Reguera Delgado 8f60cb
    VARS[0]='EDITOR'
Alain Reguera Delgado 8f60cb
    VARS[1]='TZ'
Alain Reguera Delgado 8f60cb
    VARS[2]='TEXTDOMAIN'
Alain Reguera Delgado 8f60cb
    VARS[3]='TEXTDOMAINDIR'
Alain Reguera Delgado 8f60cb
    VARS[4]='LANG'
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define description of environment variables.
Alain Reguera Delgado 8f60cb
    INFO[0]="`gettext "Default text editor"`"
Alain Reguera Delgado 8f60cb
    INFO[1]="`gettext "Default time zone representation"`"
Alain Reguera Delgado 8f60cb
    INFO[2]="`gettext "Default domain used to retrieve translated messages"`"
Alain Reguera Delgado 8f60cb
    INFO[3]="`gettext "Default directory used to retrive translated messages"`"
Alain Reguera Delgado 8f60cb
    INFO[4]="`gettext "Default locale information"`"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    until [[ $COUNT -eq ${#VARS[*]} ]];do
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Let user to reduce output using regular expression as
Alain Reguera Delgado 8f60cb
        # reference.
Alain Reguera Delgado 8f60cb
        if [[ ${VARS[$COUNT]} =~ $FLAG_FILTER ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
            # Output list of environment variables using indirect
Alain Reguera Delgado 8f60cb
            # expansion (what a beautiful feature!) to output variable
Alain Reguera Delgado 8f60cb
            # value.
Alain Reguera Delgado 8f60cb
            cli_printMessage "${INFO[$COUNT]}:"
Alain Reguera Delgado 8f60cb
            cli_printMessage "${VARS[$COUNT]}=${!VARS[$COUNT]}" --as-response-line
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Increment counter.
Alain Reguera Delgado 8f60cb
        COUNT=$(($COUNT + 1))
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    done
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}