From 7362708895f8aa71dad5b679d41affdeea1ee778 Mon Sep 17 00:00:00 2001 From: JRGTH Date: Mon, 15 Sep 2025 20:14:46 -0400 Subject: [PATCH] Fix for missing variable, thanks to tga Fix for missing variable affecting embedded platforms, thanks to @tga. --- CHANGELOG | 1 + bastille-init | 2 +- version | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 410762c..9ca655f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ ====================== Version Description +1.2.04......Fix for missing variable affecting embedded platforms, thanks to tga. 1.2.03......Added post upgrade function for convenience, cleanup obsolete code. 1.2.02......Always execute extension script after upgrade from WebGUI, code changes. 1.2.01......Fix extension script missing statement preventing for new installs. diff --git a/bastille-init b/bastille-init index b0507e5..179a34d 100644 --- a/bastille-init +++ b/bastille-init @@ -89,7 +89,7 @@ ARG="${2}" # Load bastille configuration file. if [ -f "${BASTILLECONF}" ]; then . /${BASTILLECONF} -elif [ -f "${BASTILLECONF}" ]; then +elif [ -f "${INSTALLPATH}/${BASTILLECONF}" ]; then . /${INSTALLPATH}/${BASTILLECONF} fi diff --git a/version b/version index 77ccbba..6189d86 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.2.03 +1.2.04