Apply stijn Jonker's -q fix

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@1322 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2004-05-10 21:16:43 +00:00
parent 2caba7da53
commit 0d93745e90
2 changed files with 4 additions and 2 deletions

View File

@ -57,3 +57,5 @@ Changes since 2.0.1
27) Applied Stijn Jonker's fix for "shorewall add"
28) Correct typo that broke "shorewall delete"
29) Apply stign Jonker's -q fix.

View File

@ -5915,7 +5915,7 @@ do_initialize() {
FUNCTIONS=$SHARED_DIR/functions
if [ -f $FUNCTIONS ]; then
echo "Loading $FUNCTIONS..."
[ -n "$QUIET" ] || echo "Loading $FUNCTIONS..."
. $FUNCTIONS
else
startup_error "$FUNCTIONS does not exist!"
@ -5932,7 +5932,7 @@ do_initialize() {
config=$(find_file shorewall.conf)
if [ -f $config ]; then
echo "Processing $config..."
[ -n "$QUIET" ] || echo "Processing $config..."
. $config
else
echo "$config does not exist!" >&2