From 4b0333cc081e36f4a6df2e52f52cfeef9cb086f2 Mon Sep 17 00:00:00 2001 From: Leonardo Di Donato Date: Fri, 26 Mar 2021 13:55:04 +0000 Subject: [PATCH] update(docker/falco): SKIP_MODULE_LOAD not supported anymore - use SKIP_DRIVER_LOADER When we started to implemented 20200506-artifacts-scope-part-2 proposal , among a million other things, we renamed `SKIP_MODULE_LOAD` to `SKIP_DRIVER_LOADER`. We reatained compatibility with `SKIP_MODULE_LOAD` for a bunch of releases. Now, after 9 months have passed I think it's time to completely deprecate it. Signed-off-by: Leonardo Di Donato --- docker/falco/docker-entrypoint.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docker/falco/docker-entrypoint.sh b/docker/falco/docker-entrypoint.sh index 8e852fd1..9147fe10 100755 --- a/docker/falco/docker-entrypoint.sh +++ b/docker/falco/docker-entrypoint.sh @@ -16,14 +16,9 @@ # limitations under the License. # -# todo(leogr): remove deprecation notice within a couple of releases -if [[ ! -z "${SKIP_MODULE_LOAD}" ]]; then - echo "* SKIP_MODULE_LOAD is deprecated and will be removed soon, use SKIP_DRIVER_LOADER instead" -fi - # Set the SKIP_DRIVER_LOADER variable to skip loading the driver -if [[ -z "${SKIP_DRIVER_LOADER}" ]] && [[ -z "${SKIP_MODULE_LOAD}" ]]; then +if [[ -z "${SKIP_DRIVER_LOADER}" ]]; then echo "* Setting up /usr/src links from host" for i in "$HOST_ROOT/usr/src"/*