Prepare CVS to move to Sourceforge

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@2168 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2005-05-24 14:00:03 +00:00
parent fb487f5b54
commit 2395916b7c
2 changed files with 10 additions and 2 deletions

View File

@ -13,8 +13,12 @@
<h3><a
href="http://lists.shorewall.net/pipermail/shorewall-users/2005-May/018444.html">NEWS:
Tom Eastep ends his involvement with Shorewall</a>.</h3>
<p><b>NEWS: Tom Eastep <br>
</b><br>
<span style="font-weight: bold;">If you would like to help with future
Shorewall development, support and documentation then please subscribe
to the <a href="http://lists.shorewall.net/#Devel">Shorewall
Development mailing list</a> and introduce yourself. The future of
Shorewall is being actively discussed on that list.</span><br>
<p>
The information on this site applies only
to 2.x releases of Shorewall. For older versions:</p>
<ul>

View File

@ -1395,6 +1395,8 @@ case "$1" in
RESTOREPATH=/var/lib/shorewall/$RESTOREFILE
[ -n "$nolock" ] || mutex_on
if [ -x $RESTOREPATH ]; then
if [ -x ${RESTOREPATH}-ipsets ] ; then
echo Restoring Ipsets...
@ -1405,8 +1407,10 @@ case "$1" in
echo Restoring Shorewall...
$RESTOREPATH && echo "Shorewall restored from /var/lib/shorewall/$RESTOREFILE"
[ -n "$nolock" ] || mutex_off
else
echo "File /var/lib/shorewall/$RESTOREFILE: file not found"
[ -n "$nolock" ] || mutex_off
exit 2
fi
;;