Update vars & version

This commit is contained in:
Patrick Van der Veken 2025-04-27 08:19:32 +02:00
parent b484d9a264
commit 8f12a0b976
2 changed files with 5 additions and 2 deletions

View File

@ -43,7 +43,7 @@
# or LOCAL_CONFIG_FILE instead # or LOCAL_CONFIG_FILE instead
# define the version (YYYY-MM-DD) # define the version (YYYY-MM-DD)
typeset -r SCRIPT_VERSION="2025-04-28" typeset -r SCRIPT_VERSION="2025-04-27"
# name of the global configuration file (script) # name of the global configuration file (script)
typeset -r GLOBAL_CONFIG_FILE="manage_ssh.conf" typeset -r GLOBAL_CONFIG_FILE="manage_ssh.conf"
# name of the local configuration file (script) # name of the local configuration file (script)
@ -86,6 +86,9 @@ typeset FIX_CREATE=0
typeset CAN_DISCOVER_KEYS=0 typeset CAN_DISCOVER_KEYS=0
typeset CAN_START_AGENT=1 typeset CAN_START_AGENT=1
typeset KEY_COUNT=0 typeset KEY_COUNT=0
typeset KEY_256_COUNT=0
typeset KEY_384_COUNT=0
typeset KEY_521_COUNT=0
typeset KEY_1024_COUNT=0 typeset KEY_1024_COUNT=0
typeset KEY_2048_COUNT=0 typeset KEY_2048_COUNT=0
typeset KEY_4096_COUNT=0 typeset KEY_4096_COUNT=0

View File

@ -31,7 +31,7 @@ use Pod::Usage;
# ------------------------- CONFIGURATION starts here ------------------------- # ------------------------- CONFIGURATION starts here -------------------------
# define the version (YYYY-MM-DD) # define the version (YYYY-MM-DD)
my $script_version = "2025-04-28"; my $script_version = "2025-04-27";
# name of global configuration file (no path, must be located in the script directory) # name of global configuration file (no path, must be located in the script directory)
my $global_config_file = "update_ssh.conf"; my $global_config_file = "update_ssh.conf";
# name of localized configuration file (no path, must be located in the script directory) # name of localized configuration file (no path, must be located in the script directory)