mirror of
https://gitlab.com/shorewall/code.git
synced 2025-01-10 23:58:14 +01:00
Remove need for '-v-1' when compiling to stdout
This commit is contained in:
parent
3efaef813f
commit
999a00dc77
@ -1,3 +1,7 @@
|
||||
Changes in Shorewall 4.4.0
|
||||
|
||||
1) Fix 'compile ... -' so that it no longer requires '-v-1'
|
||||
|
||||
Changes in Shorewall 4.4.0-RC2
|
||||
|
||||
1) Fix capabilities file with Shorewall6.
|
||||
|
@ -120,7 +120,8 @@ Shorewall 4.4.0
|
||||
P R O B L E M S C O R R E C T E D I N 4 . 4 . 0
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
None.
|
||||
1) When compiling to standard out, it is no longer necessary to
|
||||
specify '-v-1' to suppress the 'Compiling...' progress message
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
K N O W N P R O B L E M S R E M A I N I N G
|
||||
@ -522,7 +523,7 @@ None.
|
||||
(host IP addresses 192.168.1.1 - 192.168.1.6). Your first notion
|
||||
might be to use IPMARK(src,0xFF,0x10000) so as to produce class IDs
|
||||
1:1 through 1:6. But 1:1 is the class ID if the base HTB class on
|
||||
interface 1. So you might chose instent to use
|
||||
interface 1. So you might chose instead to use
|
||||
IPMARK(src,0xFF,0x10100) as shown in the example above so as to
|
||||
avoid minor class 1.
|
||||
|
||||
@ -593,16 +594,12 @@ None.
|
||||
|
||||
Examples:
|
||||
|
||||
shorewall compile -v-1 -- - # Compile the configuration in
|
||||
# /etc/shorewall and send the
|
||||
# output to STDOUT
|
||||
shorewall compile -v-1 . - # Compile the configuration in the
|
||||
# current working directory
|
||||
# and send the output to STDOUT
|
||||
|
||||
Note that the '-v-1' suppresses the 'Compiling...' message normally
|
||||
issued by /sbin/shorewall (/sbin/shorewall6) when a compilation
|
||||
begins.
|
||||
shorewall compile -- - # Compile the configuration in
|
||||
# /etc/shorewall and send the
|
||||
# output to STDOUT
|
||||
shorewall compile . - # Compile the configuration in the
|
||||
# current working directory
|
||||
# and send the output to STDOUT
|
||||
|
||||
17) Supplying an interface name in the SOURCE column of
|
||||
/etc/shorewall/masq is now deprecated. Entering the name of an
|
||||
|
@ -698,7 +698,9 @@ compile_command() {
|
||||
|
||||
export EXPORT
|
||||
|
||||
progress_message3 "Compiling..."
|
||||
if [ x$file != x- ]; then
|
||||
progress_message3 "Compiling..."
|
||||
fi
|
||||
|
||||
compiler $debugging compile $file
|
||||
}
|
||||
|
@ -610,7 +610,9 @@ compile_command() {
|
||||
|
||||
export EXPORT
|
||||
|
||||
progress_message3 "Compiling..."
|
||||
if [ x$file != x- ]; then
|
||||
progress_message3 "Compiling..."
|
||||
fi
|
||||
|
||||
compiler exec $debugging compile $file
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user