|
|
878a2b |
#!/bin/bash
|
|
|
878a2b |
#
|
|
|
878a2b |
# cli_getConfigLines.sh -- This function retrives configuration lines
|
|
|
878a2b |
# form configuration files. As arguments, the configuration file
|
|
|
878a2b |
# absolute path, the configuration section name, and the configuration
|
|
|
878a2b |
# variable name must be provided.
|
|
|
878a2b |
#
|
|
|
03486a |
# Copyright (C) 2009, 2010, 2011, 2012 The CentOS Project
|
|
|
878a2b |
#
|
|
|
878a2b |
# This program is free software; you can redistribute it and/or modify
|
|
|
878a2b |
# it under the terms of the GNU General Public License as published by
|
|
|
878a2b |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
|
878a2b |
# your option) any later version.
|
|
|
878a2b |
#
|
|
|
878a2b |
# This program is distributed in the hope that it will be useful, but
|
|
|
878a2b |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
878a2b |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
878a2b |
# General Public License for more details.
|
|
|
878a2b |
#
|
|
|
878a2b |
# You should have received a copy of the GNU General Public License
|
|
|
878a2b |
# along with this program; if not, write to the Free Software
|
|
|
878a2b |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
878a2b |
#
|
|
|
878a2b |
# ----------------------------------------------------------------------
|
|
|
878a2b |
# $Id$
|
|
|
878a2b |
# ----------------------------------------------------------------------
|
|
|
878a2b |
|
|
|
878a2b |
function cli_getConfigLines {
|
|
|
878a2b |
|
|
|
878a2b |
# Initialize absolute path to configuration file.
|
|
|
878a2b |
local CONFIG_ABSPATH="$1"
|
|
|
878a2b |
|
|
|
878a2b |
# Verify absolute path to configuration file.
|
|
|
878a2b |
cli_checkFiles ${CONFIG_ABSPATH}
|
|
|
878a2b |
|
|
|
878a2b |
# Initialize configuration section name where the variable value
|
|
|
878a2b |
# we want to to retrive is set in.
|
|
|
878a2b |
local CONFIG_SECTION="$2"
|
|
|
878a2b |
|
|
|
878a2b |
# Initialize variable name we want to retrive value from.
|
|
|
878a2b |
local CONFIG_VARNAME="$3"
|
|
|
878a2b |
|
|
|
878a2b |
# Verify configuration variable name. When no variable name is
|
|
|
878a2b |
# provided print all configuration lines that can be considered
|
|
|
878a2b |
# as well-formed paths. Be sure configuration variable name starts
|
|
|
878a2b |
# just at the begining of the line.
|
|
|
878a2b |
if [[ ! $CONFIG_VARNAME =~ '^[[:alnum:]_./-]+$' ]];then
|
|
|
878a2b |
CONFIG_VARNAME='[[:alnum:]_./-]+='
|
|
|
878a2b |
fi
|
|
|
878a2b |
|
|
|
878a2b |
# Retrive configuration lines from configuration file.
|
|
|
878a2b |
local CONFIG_LINES=$(cat ${CONFIG_ABSPATH} \
|
|
|
878a2b |
| egrep -v '^#' \
|
|
|
878a2b |
| egrep -v '^[[:space:]]*$' \
|
|
|
878a2b |
| sed -r 's![[:space:]]*!!g' \
|
|
|
878a2b |
| sed -r -n "/^\[${CONFIG_SECTION}\]$/,/^\[/p" \
|
|
|
878a2b |
| egrep -v '^\[' | sort | uniq \
|
|
|
878a2b |
| egrep "^${CONFIG_VARNAME}")
|
|
|
878a2b |
|
|
|
878a2b |
# Output value related to variable name.
|
|
|
878a2b |
echo "$CONFIG_LINES"
|
|
|
878a2b |
|
|
|
878a2b |
}
|