|
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 |
# Standardize the actions that must be realized just before leaving
|
|
Alain Reguera Delgado |
b33753 |
# the script execution (e.g., cleaning temporal files). This function
|
|
Alain Reguera Delgado |
b33753 |
# is the one called when interruption signals like EXIT, SIGHUP,
|
|
Alain Reguera Delgado |
b33753 |
# SIGINT and SIGTERM are detected.
|
|
Alain Reguera Delgado |
b33753 |
function tcar_terminateScriptExecution {
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
# Remove temporal directory.
|
|
Alain Reguera Delgado |
b33753 |
rm -r ${TCAR_SCRIPT_TEMPDIR}
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
# NOTE: Don't specify an exit status here. As convenction we do
|
|
Alain Reguera Delgado |
b33753 |
# this when error messages are triggerd. See `--as-error-line'
|
|
Alain Reguera Delgado |
b33753 |
# option from `tcar_printMessage' functionality.
|
|
Alain Reguera Delgado |
b33753 |
|
|
Alain Reguera Delgado |
b33753 |
}
|