> On Friday, February 23rd, 2024 at 4:39 PM, Bo Berglund 
> <bo.bergl...@gmail.com> wrote:

> On Fri, 23 Feb 2024 13:24:36 +0100, Gert Doering g...@greenie.muc.de wrote:
> 
> > I think at this point you need to familiarize yourself with shell
> > scripting to ensure that script is well-behaved.
> 
> 
> And using shellcheck <scriptfile> after editing/creating a script file also
> 
> helps in getting rid of syntax errors etc...
> 
> "sudo apt install shellcheck" if you do not already have it installed...
> 
> 
> --
> Bo Berglund
> Developer in Sweden
> 
> 
> 
> _______________________________________________
> Openvpn-users mailing list
> Openvpn-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/openvpn-users

Hello,
I installed shellcheck and result is:

# shellcheck script-events.sh

In script-events.sh line 14:
if [[ "$script_type" == "client-connect" ]]; then
       ^----------^ SC2154 (warning): script_type is referenced but not 
assigned.


In script-events.sh line 15:
    echo "$LOG_TIMESTAMP - $common_name connected with IP $trusted_ip" >> 
"$LOG_FILE"
                           ^----------^ SC2154 (warning): common_name is 
referenced but not assigned.
                                                          ^---------^ SC2154 
(warning): trusted_ip is referenced but not assigned.

For more information:
  https://www.shellcheck.net/wiki/SC2154 -- common_name is referenced but not...


_______________________________________________
Openvpn-users mailing list
Openvpn-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openvpn-users

Reply via email to