|
|
878a2b |
#!/bin/bash
|
|
|
878a2b |
#
|
|
|
878a2b |
# centos-art.sh -- The CentOS Artwork Repository automation tool.
|
|
|
878a2b |
#
|
|
|
f97c6b |
# Copyright (C) 2009-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
|
|
|
f97c6b |
# the Free Software Foundation; either version 2 of the License, or
|
|
|
f97c6b |
# (at 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 |
|
|
|
f97c6b |
# Initialize script-specific configuration variables.
|
|
|
148747 |
declare -xr BRAND="centos"
|
|
|
148747 |
declare -xr CLI_NAME="${BRAND}-art"
|
|
|
1e9726 |
declare -xr CLI_PPID=$$
|
|
|
f97c6b |
declare -xr CLI_VERSION='1.0'
|
|
|
2a2d9c |
declare -xr CLI_TEMPDIR="$(mktemp -p /tmp -d ${CLI_NAME}.XXXXXX)"
|
|
|
878a2b |
|
|
|
f97c6b |
# Initialize user-specific path information.
|
|
|
2a2d9c |
declare -xr CLI_WRKCOPY="${HOME}/Projects/CentOS"
|
|
|
947cfd |
declare -xr CLI_BASEDIR="${CLI_WRKCOPY}/trunk/Scripts/Bash"
|
|
|
2a2d9c |
declare -xr CLI_FUNCDIR="${CLI_BASEDIR}/Functions"
|
|
|
878a2b |
|
|
|
148747 |
# Initialize copyright information.
|
|
|
148747 |
declare -xr COPYRIGHT_HOLDER="The CentOS Project"
|
|
|
148747 |
declare -xr COPYRIGHT_YEAR_FIRST="2009"
|
|
|
148747 |
|
|
|
148747 |
# Initialize domain-specific information.
|
|
|
148747 |
declare -xr DOMAINNAME="${BRAND}.org"
|
|
|
148747 |
declare -xr DOMAINNAME_LISTS="lists.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_HOME="www.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_PROJECTS="projects.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_FORUMS="forums.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_BUGS="bugs.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_PLANET="planet.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_WIKI="wiki.${DOMAINNAME}"
|
|
|
148747 |
declare -xr DOMAINNAME_MIRRORS="mirrors.${DOMAINNAME}"
|
|
|
148747 |
|
|
|
148747 |
# Initialize mail-specific information.
|
|
|
148747 |
declare -xr MAILINGLIST_DOCS="${BRAND}-docs@${DOMAINNAME}"
|
|
|
148747 |
declare -xr MAILINGLIST_L10N="${BRAND}-l10n@${DOMAINNAME}"
|
|
|
148747 |
declare -xr MAILINGLIST_DEVEL="${BRAND}-devel@${DOMAINNAME}"
|
|
|
148747 |
|
|
|
878a2b |
# Initialize internazionalization through GNU gettext.
|
|
|
878a2b |
. gettext.sh
|
|
|
6af9c2 |
declare -xr TEXTDOMAIN=${CLI_NAME}.sh
|
|
|
148747 |
declare -xr TEXTDOMAINDIR=${CLI_WRKCOPY}/trunk/Locales/Scripts/Bash
|
|
|
878a2b |
|
|
|
878a2b |
# Initialize command-line interface.
|
|
|
f97c6b |
if [[ -x ${CLI_FUNCDIR}/Commons/init.sh ]];then
|
|
|
f97c6b |
. ${CLI_FUNCDIR}/Commons/init.sh; export -f init ; init "$@"
|
|
|
f97c6b |
fi
|