#!/bin/bash # script for wizard firewall configuration # # checking if the provided value is correct : # strip the @, need at least a dot dtmp=`echo ${wiz_ext_device} |sed -e 's/^\(\w*\).*$/\1/'` if [ -z "${dtmp}" ] ;then echo_debug "wiz_ext_device is empty, should not." exit 1 fi # all seems to be ok exit 10