A previous PR addressed a mismatch in flag names between docker/skr/skr.sh and cmd/skr/main.go, particularly concerning the -logfile and -loglevel flags. This mismatch prevented users from successfully running the SKR container when logging parameters were specified in their ARM templates.
This PR extends the fix to the remaining SKR shell scripts. The following changes were made:
In docker/skr/skr-debug.sh, replaced -logFile ${LogFile} with -logfile ${LogFile} and -logLevel ${LogLevel} with -loglevel ${LogLevel}.
In docker/skr/skr_test.sh, replaced -logFile ${LogFile} with -logfile ${LogFile} and corrected -port ${LogLevel} to -loglevel ${LogLevel}.
A previous PR addressed a mismatch in flag names between
docker/skr/skr.sh
andcmd/skr/main.go
, particularly concerning the-logfile
and-loglevel
flags. This mismatch prevented users from successfully running the SKR container when logging parameters were specified in their ARM templates.This PR extends the fix to the remaining SKR shell scripts. The following changes were made:
docker/skr/skr-debug.sh
, replaced-logFile ${LogFile}
with-logfile ${LogFile}
and-logLevel ${LogLevel}
with-loglevel ${LogLevel}
.docker/skr/skr_test.sh
, replaced-logFile ${LogFile}
with-logfile ${LogFile}
and corrected-port ${LogLevel}
to-loglevel ${LogLevel}
.