Blame Scripts/Bash/Functions/Prepare/prepare.sh

878a2b
#!/bin/bash
878a2b
#
154abf
# prepare.sh (initialization) -- This function creates the base
154abf
# execution environment required to standardize final configuration
154abf
# stuff needed by your workstation, once the working copy of The
154abf
# CentOS Artwork Repository has been downloaded in it.
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 prepare {
878a2b
878a2b
    local ACTIONNAM=''
878a2b
    local ACTIONNAMS=''
878a2b
878a2b
    # Define absolute path to directory holding prepare's
878a2b
    # configuration files.
878a2b
    local PREPARE_CONFIG_DIR=${CLI_FUNCDIR}/${CLI_FUNCDIRNAM}/Config
878a2b
878a2b
    # Interpret arguments and options passed through command-line.
878a2b
    prepare_getOptions
878a2b
878a2b
    # Execute action names based on whether they were provided or not.
878a2b
    if [[ $ACTIONNAMS == '' ]];then
878a2b
878a2b
        # When action names are not provided, define action names that
878a2b
        # will take place, explicitly.
154abf
        prepare_updateEnvironment
878a2b
        prepare_updatePackages
154abf
        prepare_updateLocales
878a2b
        prepare_updateLinks
878a2b
        prepare_updateImages
878a2b
        prepare_updateManuals
878a2b
878a2b
    else
878a2b
878a2b
        # When action names are provided, loop through them and
878a2b
        # execute them one by one.
878a2b
        for ACTIONNAM in $ACTIONNAMS;do
878a2b
            ${ACTIONNAM}
878a2b
        done
878a2b
878a2b
    fi
878a2b
878a2b
}