From cbea78b283c06026db25479c8627ae7424fa1d4f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Tue, 25 Oct 2022 11:04:37 +0200 Subject: [PATCH] fix(scripts): by default, do not enable any driver. Signed-off-by: Federico Di Pierro --- scripts/debian/postinst.in | 3 --- scripts/rpm/postinstall.in | 3 --- 2 files changed, 6 deletions(-) diff --git a/scripts/debian/postinst.in b/scripts/debian/postinst.in index 48b45f07..a3188692 100755 --- a/scripts/debian/postinst.in +++ b/scripts/debian/postinst.in @@ -41,9 +41,6 @@ case "$1" in chosen_driver="plugin" ;; esac - else - # Default at old behavior: enable kmod driver - chosen_driver="kmod" fi ;; esac diff --git a/scripts/rpm/postinstall.in b/scripts/rpm/postinstall.in index 6288fdff..ffa85b97 100755 --- a/scripts/rpm/postinstall.in +++ b/scripts/rpm/postinstall.in @@ -40,9 +40,6 @@ case "$1" in chosen_driver="plugin" ;; esac - else - # Default at old behavior: enable kmod driver - chosen_driver="kmod" fi ;; esac