X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=blobdiff_plain;f=usr_sbin%2Fgrml-iptstate;fp=usr_sbin%2Fgrml-iptstate;h=6dad6c2e58293f754485e155ca08a1584d5374d1;hp=b9e9a2fc904e5cdaa76bba34d45a4f408372d4b2;hb=cb015ef1617ac6b6bd171ab08140b11cec9293a4;hpb=4f3413a694cd23d7c5d397d698402f5088131ae2 diff --git a/usr_sbin/grml-iptstate b/usr_sbin/grml-iptstate index b9e9a2f..6dad6c2 100755 --- a/usr_sbin/grml-iptstate +++ b/usr_sbin/grml-iptstate @@ -6,7 +6,9 @@ # License: This file is licensed under the GPL v2. ################################################################################ +# shellcheck disable=SC1091 . /etc/grml/script-functions +# shellcheck disable=SC1091 . /etc/grml/lsb-functions check4progs iptstate || exit 1 @@ -18,8 +20,9 @@ else ewarn "Module ip_conntrack is not present. Can not start iptstate therefore." eindent einfon "Do you want to load it and invoke iptstate afterwards? [YES|no] " - read a - if [ "$a" = YES -o "$a" = yes -o "$a" = '' -o "$a" = y -o "$a" = Y ] ; then + read -r a + a=$(echo "$a" | tr '[:upper:]' '[:lower:]') + if [ "$a" = "yes" ] || [ "$a" = "y" ] || [ "$a" = "" ] ; then modprobe ip_conntrack ; RC=$? eend $RC [ "$RC" = 0 ] && exec iptstate