From 610d0b560593a1b441bf57b566e5d057d4651d77 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Dec 20 2013 15:02:23 +0000 Subject: Fix absolute path to scripts. - Previously, scripts were stored inside directories written in lowercase. Now they are stored in directories written with the first letter in uppercase. This update changes tcar initialization file in order to use directories written with the first letter in uppercase instead of directories written in lowercase. --- diff --git a/tcar-scripts/tcar.sh b/tcar-scripts/tcar.sh index 1d2fc89..6f6b681 100755 --- a/tcar-scripts/tcar.sh +++ b/tcar-scripts/tcar.sh @@ -36,7 +36,7 @@ declare -xr TCAR_SCRIPT_VERSION="$(rpm -q --qf "%{VERSION}" ${TCAR_SCRIPT_PACKAG ###################################################################### # Base directory where repository files are installed in. -declare -xr TCAR_BASEDIR=/usr/share/tcar/scripts +declare -xr TCAR_BASEDIR=/usr/share/tcar/Scripts # Base directory where final content is produced. This value should be # customized later by the user. @@ -54,7 +54,7 @@ declare -xr TCAR_SCRIPT_CONFIG=${HOME}/.tcar.conf declare -xr TCAR_SCRIPT_MANUALS=/usr/share/man # Base directory where automation script modules are installed in. -declare -xr TCAR_SCRIPT_MODULES_BASEDIR=${TCAR_BASEDIR}/modules +declare -xr TCAR_SCRIPT_MODULES_BASEDIR=${TCAR_BASEDIR}/Modules # Default text editor. declare -x TCAR_SCRIPT_EDITOR=/usr/bin/vim