|
Alain Reguera Delgado |
66223d |
#!/bin/bash
|
|
Alain Reguera Delgado |
66223d |
######################################################################
|
|
Alain Reguera Delgado |
66223d |
#
|
|
Alain Reguera Delgado |
b33753 |
# tcar - The CentOS Artwork Repository automation tool.
|
|
Alain Reguera Delgado |
b33753 |
# Copyright © 2014 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
66223d |
#
|
|
Alain Reguera Delgado |
b33753 |
# This program is free software; you can redistribute it and/or
|
|
Alain Reguera Delgado |
b33753 |
# modify it under the terms of the GNU General Public License as
|
|
Alain Reguera Delgado |
b33753 |
# published by the Free Software Foundation; either version 2 of the
|
|
Alain Reguera Delgado |
b33753 |
# License, or (at your option) any later version.
|
|
Alain Reguera Delgado |
66223d |
#
|
|
Alain Reguera Delgado |
b33753 |
# This program is distributed in the hope that it will be useful,
|
|
Alain Reguera Delgado |
b33753 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
b33753 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
b33753 |
# General Public License for more details.
|
|
Alain Reguera Delgado |
66223d |
#
|
|
Alain Reguera Delgado |
b33753 |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
b33753 |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
b33753 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
66223d |
#
|
|
Alain Reguera Delgado |
b33753 |
# Alain Reguera Delgado <al@centos.org.cu>
|
|
Alain Reguera Delgado |
b33753 |
# 39 Street No. 4426 Cienfuegos, Cuba.
|
|
Alain Reguera Delgado |
66223d |
#
|
|
Alain Reguera Delgado |
66223d |
######################################################################
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
b33753 |
# Standardize the way configuration values are retrieved from
|
|
Alain Reguera Delgado |
b33753 |
# configuration files. As arguments, the configuration file absolute
|
|
Alain Reguera Delgado |
b33753 |
# path, the configuration section name, and the configuration option
|
|
Alain Reguera Delgado |
b33753 |
# name must be provided.
|
|
Alain Reguera Delgado |
66223d |
function tcar_getConfigValue {
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_FILE="${1}"
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_SECTION="${2}"
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_OPTION="${3}"
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_LINES=$(tcar_getConfigLines \
|
|
Alain Reguera Delgado |
66223d |
"${CONFIGURATION_FILE}" "${CONFIGURATION_SECTION}" "${CONFIGURATION_OPTION}")
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
for CONFIGURATION_LINE in "${CONFIGURATION_LINES}";do
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_VALUE=$(echo "${CONFIGURATION_LINE}" \
|
|
Alain Reguera Delgado |
66223d |
| cut -d= -f2- | sed -r -e 's/"//g' -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
eval echo ${CONFIGURATION_VALUE}
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
done
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
}
|