This is an automated email from the ASF dual-hosted git repository.
gmjennin pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/vcl.git
The following commit(s) were added to refs/heads/develop by this push:
new 5c3ecdb VCL-1132 Added logic to skip character l and L when
generating passwords
5c3ecdb is described below
commit 5c3ecdbde4d7d8af61eeb25925eb834b89252a8b
Author: Mike Jennings <[email protected]>
AuthorDate: Thu Mar 11 14:57:56 2021 -0500
VCL-1132 Added logic to skip character l and L when generating passwords
---
managementnode/lib/VCL/utils.pm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/managementnode/lib/VCL/utils.pm b/managementnode/lib/VCL/utils.pm
index 5204b82..bbbd154 100644
--- a/managementnode/lib/VCL/utils.pm
+++ b/managementnode/lib/VCL/utils.pm
@@ -2338,10 +2338,12 @@ sub getpw {
#Skip certain confusing chars like: iI1lL,0Oo Zz2
my @character_set = (
'A' .. 'H',
- 'J' .. 'N',
+ 'J' .. 'K',
+ 'M' .. 'N',
'P' .. 'Y',
'a' .. 'h',
- 'j' .. 'n',
+ 'j' .. 'k',
+ 'm' .. 'n',
'p' .. 'y',
'3' .. '9',
);