|
Alain Reguera Delgado |
b33753 |
#!/bin/bash
|
|
Alain Reguera Delgado |
b33753 |
######################################################################
|
|
Alain Reguera Delgado |
b33753 |
#
|
|
Alain Reguera Delgado |
b33753 |
# tcar - The CentOS Artwork Repository automation tool.
|
|
Alain Reguera Delgado |
b33753 |
# Copyright © 2014 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
b33753 |
#
|
|
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 |
b33753 |
#
|
|
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 |
b33753 |
#
|
|
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 |
b33753 |
#
|
|
Alain Reguera Delgado |
b33753 |
# Alain Reguera Delgado <al@centos.org.cu>
|
|
Alain Reguera Delgado |
b33753 |
# 39 Street No. 4426 Cienfuegos, Cuba.
|
|
Alain Reguera Delgado |
b33753 |
#
|
|
Alain Reguera Delgado |
b33753 |
######################################################################
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
# Print tcar version and license information.
|
|
Alain Reguera Delgado |
b33753 |
function tcar_printVersion {
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
# Reset text domain locally, in order to prevent this function
|
|
Alain Reguera Delgado |
b33753 |
# from using the last text domain definition. By default all
|
|
Alain Reguera Delgado |
b33753 |
# common functions do use the same MO file.
|
|
Alain Reguera Delgado |
b33753 |
local TEXTDOMAIN="${TCAR_SCRIPT_NAME}"
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
tcar_printMessage "`eval_gettext "\\\$TCAR_SCRIPT_NAME version \\\$TCAR_SCRIPT_VERSION"`" --as-stdout-line
|
|
Alain Reguera Delgado |
b33753 |
tcar_printCopyrightInfo
|
|
Alain Reguera Delgado |
b33753 |
tcar_printMessage "`eval_gettext "\\\$TCAR_SCRIPT_NAME comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of \\\$TCAR_SCRIPT_NAME under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING."`" --as-stdout-line | fold --width=66 --spaces
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
exit 0
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
}
|