From 17a0d5db430e068f07fcf4b56645da3477a0cf8c Mon Sep 17 00:00:00 2001 From: Reshad Patuck Date: Fri, 15 May 2020 20:09:48 +0530 Subject: [PATCH] fix(falco-driver-loader): target for ubuntu is ubuntu-generic The upstream files for the generic Ubuntu kernel are all called ubuntu-generic see: https://dl.bintray.com/falcosecurity/driver/96bd9bc560f67742738eb7255aeb4d03046b8045/ Signed-off-by: Reshad Patuck --- scripts/falco-driver-loader | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/falco-driver-loader b/scripts/falco-driver-loader index a27a348f47d..d454f058cde 100755 --- a/scripts/falco-driver-loader +++ b/scripts/falco-driver-loader @@ -131,7 +131,7 @@ get_target_id() { if [[ $KERNEL_RELEASE == *"aws"* ]]; then TARGET_ID="ubuntu-aws" else - TARGET_ID="ubuntu" + TARGET_ID="ubuntu-generic" fi ;; (*) @@ -438,4 +438,4 @@ if [ -v FALCO_BPF_PROBE ] || [ "${1}" = "bpf" ]; then load_bpf_probe else load_kernel_module -fi \ No newline at end of file +fi