More verbosity control

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3359 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep
2006-01-23 20:44:31 +00:00
parent cf8344b26d
commit 52f7028aa5
3 changed files with 12 additions and 3 deletions

View File

@ -75,6 +75,11 @@ progress_message2() # $* = Message
[ $VERBOSE -gt 0 ] && echo "$@"
}
progress_message3() # $* = Message
{
[ $VERBOSE -ge 0 ] && echo "$@"
}
#
# Suppress all output for a command
#