From f8b97bfbceea9ef2b363f898e7154df665e07f05 Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Mon, 21 Mar 2022 19:12:41 +0100 Subject: [PATCH] docs(falco_scripts): update comments in falco-driver-loader. Signed-off-by: Andrea Terzolo --- scripts/falco-driver-loader | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/falco-driver-loader b/scripts/falco-driver-loader index ed278da9..dd3721c1 100755 --- a/scripts/falco-driver-loader +++ b/scripts/falco-driver-loader @@ -221,7 +221,7 @@ load_kernel_module_download() { print_clean_termination() { echo - echo "* [SUCCESS] Cleaning phase correctly terminated." + echo "[SUCCESS] Cleaning phase correctly terminated." echo echo "================ Cleaning phase ================" echo @@ -233,12 +233,12 @@ clean_kernel_module() { echo if ! hash lsmod > /dev/null 2>&1; then - >&2 echo "* [ERROR]: This program requires lsmod." + >&2 echo "This program requires lsmod." exit 1 fi if ! hash rmmod > /dev/null 2>&1; then - >&2 echo "* [ERROR]: This program requires rmmod." + >&2 echo "This program requires rmmod." exit 1 fi @@ -270,7 +270,7 @@ clean_kernel_module() { done if [ ${MAX_RMMOD_WAIT} -eq 0 ]; then - echo "* [WARNING] '${KMOD_NAME}' module is still loaded, you could have incompatibility issues." + echo "[WARNING] '${KMOD_NAME}' module is still loaded, you could have incompatibility issues." echo fi @@ -288,7 +288,7 @@ clean_kernel_module() { echo echo "- OK! Removing '${DRIVER_VERSION}' succeeded." else - echo "* [WARNING] Removing '${KMOD_NAME}' version '${DRIVER_VERSION}' failed." + echo "[WARNING] Removing '${KMOD_NAME}' version '${DRIVER_VERSION}' failed." fi else echo "- OK! There is no '${KMOD_NAME}' module in dkms."