From 26c00a3948e3c5b98f0d2eff5a6834e91980a432 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 24 Jan 2023 12:10:58 +0100 Subject: [PATCH] chore: couple of small fixes. Signed-off-by: Federico Di Pierro --- scripts/debian/postinst.in | 2 +- scripts/rpm/postinstall.in | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/debian/postinst.in b/scripts/debian/postinst.in index 78cfc06b..a9fc8e83 100755 --- a/scripts/debian/postinst.in +++ b/scripts/debian/postinst.in @@ -38,7 +38,7 @@ if [ "$1" = "configure" ]; then if [ -x /usr/bin/dialog ]; then # If dialog is installed, create a dialog to let users choose the correct driver for them CHOICE=$(dialog --clear --title "Falco drivers" --menu "Choose your preferred driver:" 12 55 4 \ - 1 "Manual configuration (no unit is stared)" \ + 1 "Manual configuration (no unit is started)" \ 2 "Kmod" \ 3 "eBPF" \ 4 "Modern eBPF" \ diff --git a/scripts/rpm/postinstall.in b/scripts/rpm/postinstall.in index 62769681..d776b753 100755 --- a/scripts/rpm/postinstall.in +++ b/scripts/rpm/postinstall.in @@ -52,9 +52,6 @@ if [ $1 -eq 1 ]; then 4) chosen_driver="modern-bpf" ;; - 5) - chosen_driver="plugin" - ;; esac if [ -n "$chosen_driver" ]; then CHOICE=$(dialog --clear --title "Falcoctl" --menu "Do you want to follow automatic ruleset updates?" 10 40 2 \