forked from extern/shorewall_code
Update release documentation; be sure VARDIR gets created on Shorewall Lite
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6815 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
cae1597033
commit
acf19ea153
@ -6,6 +6,10 @@ Changes in 4.0.0 RC 2
|
||||
|
||||
3) Remove 3.4 compatibility hacks.
|
||||
|
||||
4) Fix install.sh manpage problem.
|
||||
|
||||
5) Fix LITEDIR mess.
|
||||
|
||||
Changes in 4.0.0 RC 1
|
||||
|
||||
1) shorewall-perl RPM no longer installable under shorewall 3.4.
|
||||
|
@ -30,6 +30,33 @@ Problems corrected in 4.0.0 RC 2.
|
||||
1) Shorewall-perl now correctly permits zones of type 'ipsec' in the
|
||||
ZONE column of /etc/shorewall/tunnels.
|
||||
|
||||
2) The shorewall-common install.sh may now be run multiple times from
|
||||
the same directory. Previously, the manpages were gzipped in-place
|
||||
which made it impossible to rerun the script.
|
||||
|
||||
3) The implementation of LITEDIR has always been
|
||||
unsatisfactory. Furthermore, there have been other cases where
|
||||
people have asked to be able to designate the state directory
|
||||
(default /var/lib/shorewall[-lite]).
|
||||
|
||||
To meet these objectives:
|
||||
|
||||
a) The LITEDIR variable has been eliminated in
|
||||
/usr/share/shorewall[-lite]/configpath.
|
||||
|
||||
b) A new file /etc/shorewall[-lite]/vardir has been added. This
|
||||
file is not created by default but may be added as needed. It
|
||||
is expected to contain a single variable assignment:
|
||||
|
||||
VARDIR=<directory>
|
||||
|
||||
Example:
|
||||
|
||||
VARDIR=/root/shorewall
|
||||
|
||||
To change VARDIR, copy the old directory to the new one before you
|
||||
restart Shorewall[-lite].
|
||||
|
||||
Other changes in Shorewall 4.0.0 RC 2.
|
||||
|
||||
1) The -f option is no longer the default when Shorewall is started at
|
||||
|
@ -474,6 +474,8 @@ export PRODUCT="Shorewall Lite"
|
||||
|
||||
[ -n "${VARDIR:=/var/lib/shorewall-lite}" ]
|
||||
|
||||
[ -d $VARDIR ] || mkdir -p $VARDIR || fatal_error "Unable to create $VARDIR"
|
||||
|
||||
LIBRARIES="$SHAREDIR/lib.base $SHAREDIR/lib.cli"
|
||||
VERSION_FILE=$SHAREDIR/version
|
||||
HELP=$SHAREDIR/help
|
||||
|
Loading…
Reference in New Issue
Block a user