summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xplugins-scripts/check_log.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins-scripts/check_log.sh b/plugins-scripts/check_log.sh
index 1ea70b5..c623a8d 100755
--- a/plugins-scripts/check_log.sh
+++ b/plugins-scripts/check_log.sh
@@ -153,18 +153,18 @@ done
153 153
154# Parameter sanity check 154# Parameter sanity check
155if [ $ERE ] && [ $PRE ] ; then 155if [ $ERE ] && [ $PRE ] ; then
156 echo "Can not use extended and perl regex at the same time" 156 echo "Can not use extended and perl regex at the same time"
157 exit "$STATE_UNKNOWN" 157 exit "$STATE_UNKNOWN"
158fi 158fi
159 159
160GREP="grep" 160GREP="grep"
161 161
162if [ $ERE ]; then 162if [ $ERE ]; then
163 GREP="grep -E" 163 GREP="grep -E"
164fi 164fi
165 165
166if [ $PRE ]; then 166if [ $PRE ]; then
167 GREP="grep -P" 167 GREP="grep -P"
168fi 168fi
169 169
170# If the source log file doesn't exist, exit 170# If the source log file doesn't exist, exit