Shorewall-1.4.10g

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@1429 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2004-06-30 20:20:01 +00:00
parent 636a84303c
commit c469e62bbe
3 changed files with 30 additions and 8 deletions

View File

@ -213,7 +213,7 @@ mktempfile() {
mktemp -p $1 shorewall.XXXXXX
;;
None)
mkdir $1/shorewall-$$ && echo $1/shorewall-$$
> $1/shorewall-$$ && echo $1/shorewall-$$
;;
*)
echo " ERROR:Internal error in mktempfile"
@ -247,14 +247,14 @@ mktempdir() {
[ -z "$MKTEMP" ] && find_mktemp
case "$MKTEMP" in
BSD)
mktemp -d /tmp/shorewall.XXXXXX
;;
STD)
mktemp -td shorewall.XXXXXX
;;
None)
mkdir /tmp/shorewall-$$ && echo /tmp/shorewall-$$
None|BSD)
#
# Not all versions of the BSD mktemp support the -d option under Linux
#
mkdir /tmp/shorewall-$$ && chmod 700 /tmp/shorewall-$$ && echo /tmp/shorewall-$$
;;
*)
echo " ERROR:Internal error in mktempdir"

View File

@ -1 +1 @@
1.4.10f
1.4.10g

View File

@ -13,7 +13,7 @@
</author>
</authorgroup>
<pubdate>2004-06-28</pubdate>
<pubdate>2004-06-30</pubdate>
<copyright>
<year>2001-2004</year>
@ -73,6 +73,28 @@
<section>
<title>Problems in Version 1.4</title>
<section>
<title>Shorewall 1.4.10f</title>
<itemizedlist>
<listitem>
<para>Slackware users find that version 1.4.10f fails to start
because their <command>mktemp</command> utility does not support the
-d option. This may be corrected by installing <ulink
url="http://shorewall.net/pub/shorewall/errata/1.4.10/functions">this
corrected <filename>functions</filename> file</ulink> in <filename
class="directory">/var/lib/shorewall/functions</filename>.</para>
</listitem>
<listitem>
<para>Shorewall fails to start if there is no <command>mktemp</command>
utility.</para>
</listitem>
</itemizedlist>
<para>These problems have been corrected in Shorewall version 1.4.10g.</para>
</section>
<section>
<title>Shorewall 1.4.10</title>