From 0e64a7786b341213f7f412d1f1d19d83f40b3c86 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jun 11 2011 02:10:09 +0000 Subject: Update shell.sh. --- diff --git a/Scripts/Functions/Tuneup/Backends/Shell/shell.sh b/Scripts/Functions/Tuneup/Backends/Shell/shell.sh index 4436635..991c254 100755 --- a/Scripts/Functions/Tuneup/Backends/Shell/shell.sh +++ b/Scripts/Functions/Tuneup/Backends/Shell/shell.sh @@ -1,7 +1,7 @@ #!/bin/bash # -# tuneup_shell.sh -- This function performs maintainance tasks for -# Shell script files. +# shell.sh -- This function standardizes maintainance tasks for Shell +# script files. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG # @@ -23,10 +23,13 @@ # $Id$ # ---------------------------------------------------------------------- -function tuneup_shell { +function shell { + + # Define backend-specific configuration directory. + TUNEUP_BACKEND_CONFIG="${TUNEUP_BACKEND_DIR}/$(cli_getRepoName ${TUNEUP_BACKEND} -d)/Config" # Rebuild top comment inside shell scripts, mainly to update # copyright information. - tuneup_shell_doTopComment + shell_doTopComment }