|
|
4c79b5 |
#!/bin/bash
|
|
|
4c79b5 |
#
|
|
|
79b380 |
# cli_getFunctions.sh -- This function loads funtionalities supported by
|
|
|
4c79b5 |
# centos-art.sh script.
|
|
|
4c79b5 |
#
|
|
|
2d3646 |
# Copyright (C) 2009, 2010, 2011 The CentOS Project
|
|
|
fa95b1 |
#
|
|
|
fa95b1 |
# This program is free software; you can redistribute it and/or modify
|
|
|
fa95b1 |
# it under the terms of the GNU General Public License as published by
|
|
|
dcd347 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
|
dcd347 |
# your option) any later version.
|
|
|
fa95b1 |
#
|
|
|
74a058 |
# This program is distributed in the hope that it will be useful, but
|
|
|
74a058 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
4c79b5 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
4c79b5 |
# General Public License for more details.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# You should have received a copy of the GNU General Public License
|
|
|
4c79b5 |
# along with this program; if not, write to the Free Software
|
|
|
dcd347 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
7ac5a5 |
#
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
418249 |
# $Id$
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
4c79b5 |
|
|
|
79b380 |
function cli_getFunctions {
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Define variables as local to avoid conflicts outside.
|
|
|
94d85d |
local FUNCNAMCALL=''
|
|
|
335e02 |
local FUNCFILES=''
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Build action-specifc script file list.
|
|
|
335e02 |
FUNCFILES=$(ls ${FUNCDIR}/${FUNCDIRNAM}/${FUNCNAM}*.sh)
|
|
|
4c79b5 |
|
|
|
335e02 |
for FILE in $FUNCFILES;do
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if [[ -x ${FILE} ]];then
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Initialize action-specific functions.
|
|
|
4c79b5 |
. $FILE
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Export action-specific functions to current shell script
|
|
|
4c79b5 |
# environment.
|
|
|
94d85d |
FUNCNAMCALL=$(grep '^function ' $FILE | cut -d' ' -f2)
|
|
|
94d85d |
export -f $FUNCNAMCALL
|
|
|
4c79b5 |
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
|
|
|
839ab3 |
cli_printMessage "`eval_gettext "The \\\"\\\$FILE\\\" has not execution rights."`" --as-error-line
|
|
|
4c79b5 |
|
|
|
4c79b5 |
fi
|
|
|
4c79b5 |
|
|
|
4c79b5 |
done
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Execute action passed to centos-art.sh script.
|
|
|
20d2d8 |
if [[ $FUNCNAM != '' ]];then
|
|
|
20d2d8 |
eval $FUNCNAM
|
|
|
20d2d8 |
fi
|
|
|
4c79b5 |
|
|
|
4c79b5 |
}
|