From 43d3088a04854bcf1fb09ed2b5d50c3b7dd25267 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Thu, 27 Oct 2016 09:30:25 +0200 Subject: [PATCH] Check for presence of custom.prf, otherwise quit with suggestion --- include/helper_configure | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/helper_configure b/include/helper_configure index 77534d59..a31b8d6f 100644 --- a/include/helper_configure +++ b/include/helper_configure @@ -62,11 +62,15 @@ elif [ ${CONFIGURE_SETTINGS} -eq 1 ]; then # Determine where profiles are stored - if [ "${PROFILEDIR}" = "" ]; then + if [ -z "${PROFILEDIR}" ]; then ${ECHOCMD} "Can not configure Lynis, as profile directory is unknown" ExitFatal fi - if [ "${CUSTOM_PROFILE}" = "" ]; then ${ECHOCMD} "No custom profile found yet."; fi + if [ -z "${CUSTOM_PROFILE}" ]; then + ${ECHOCMD} "No custom profile found yet." + ${ECHOCMD} "Suggestion: create one with 'touch custom.prf' or 'touch /etc/lynis/custom.prf'" + ExitFatal + fi FIND=$(echo ${HELPER_PARAMERS} | grep " ") if [ ! "${FIND}" = "" ]; then ${ECHOCMD} "Found invalid character (space) in configuration string"; ExitFatal; fi