From c862b59c27fbd1ca3e471ae140225f6be4892402 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 17 Oct 2020 21:47:30 -0400 Subject: [PATCH] Fix typo and minor changes --- CHANGELOG | 1 + bastille-init | 2 +- gui/bastille_manager_util.php | 2 +- version | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 28519ac..461b33d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ ====================== Version Description +1.0.73......Fix typo and minor changes. 1.0.72......Add jail cloning ability to WebGUI utilities and minor changes. 1.0.71......Enable all options by default. 1.0.70......Fix for jail auto-start with names containing dashes. diff --git a/bastille-init b/bastille-init index e594c84..447416f 100755 --- a/bastille-init +++ b/bastille-init @@ -37,7 +37,7 @@ # SUCH DAMAGE. # Set environment. -PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin +PATH=${PATH}:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin # Determine full working directory. CWDIR=$(dirname $(realpath $0)) diff --git a/gui/bastille_manager_util.php b/gui/bastille_manager_util.php index 79ed212..2ff66c3 100644 --- a/gui/bastille_manager_util.php +++ b/gui/bastille_manager_util.php @@ -505,7 +505,7 @@ $document->render(); html_checkbox2('nowstop',gettext('Stop container'),!empty($pconfig['nowstop']) ? true : false,gettext('Stop the container if running before deletion.'),'',false); html_inputbox2('newname',gettext('Enter a name for the new container'),$pconfig['newname'],'',true,30); html_inputbox2('newipaddr',gettext('Enter a IP address for the new container'),$pconfig['newipaddr'],'',true,30); - html_checkbox2('clonestop',gettext('Stop container'),!empty($pconfig['clonestop']) ? true : false,gettext('Stop the container if running before cloning, mandatory on UFS fylesystems.'),'',false); + html_checkbox2('clonestop',gettext('Stop container'),!empty($pconfig['clonestop']) ? true : false,gettext('Stop the container if running before cloning, mandatory on UFS filesystem.'),'',false); html_filechooser("source_path", gtext("Source Data Directory"), $pconfig['source_path'], gtext("Source data directory to be shared, full path here."), $source_path, false, 60); html_filechooser("target_path", gtext("Target Data Directory"), $pconfig['target_path'], gtext("Target data directory to be mapped, full path to jail here."), $target_path, false, 60); html_checkbox2("path_check", gettext("Source/Target path check"),!empty($pconfig['path_check']) ? true : false, gettext("If this option is selected no examination of the source/target directory paths will be performed."), "".gettext("Please use this option only if you know what you are doing here!")."", false); diff --git a/version b/version index eea6f62..be1dcc8 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.0.72 +1.0.73