|
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 section names are retrieved from configuration
|
|
Alain Reguera Delgado |
b33753 |
# files. Once section names are retrieved they are printed to standard
|
|
Alain Reguera Delgado |
b33753 |
# output for further processing.
|
|
Alain Reguera Delgado |
66223d |
function tcar_getConfigSectionNames {
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
# Define absolute path to configuration file we want to retrieve
|
|
Alain Reguera Delgado |
66223d |
# section names from.
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_FILE=${1}
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
# Verify existence of configuration file.
|
|
Alain Reguera Delgado |
66223d |
tcar_checkFiles -ef ${CONFIGURATION_FILE}
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
# Define regular expression pattern used to retrieve section names
|
|
Alain Reguera Delgado |
66223d |
# from configuration files. Don't permit any regular expression
|
|
Alain Reguera Delgado |
66223d |
# meta-character either.
|
|
Alain Reguera Delgado |
66223d |
local CONFIGURATION_SECTION_REGEX='^\[[[:alnum:]_.-]+\][[:space:]]*$'
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
# Output all section names without brackets, one per line. Don't
|
|
Alain Reguera Delgado |
66223d |
# permit any kind of expansion here. Section names are used as
|
|
Alain Reguera Delgado |
66223d |
# reference to retrieve information from configuration file,
|
|
Alain Reguera Delgado |
66223d |
# expanding them would create different points of verifications.
|
|
Alain Reguera Delgado |
66223d |
egrep ${CONFIGURATION_SECTION_REGEX} ${CONFIGURATION_FILE} \
|
|
Alain Reguera Delgado |
66223d |
| sed -r 's,\[(.+)\],\1,'
|
|
Alain Reguera Delgado |
66223d |
|
|
Alain Reguera Delgado |
66223d |
}
|