Release 1.0

master
bbruns 2012-05-12 23:54:57 +00:00
parent e51c5d3575
commit ac7f095c1e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1.0 - Brielle Bruns <bruns@2mbit.com>
- Minor tweaks to various config files
- Fix issue with tweaks loading
- Version 1.0
0.9.14 - Brielle Bruns <bruns@2mbit.com>
- IPv6 DHCP bypass rules (IPV6_LANDHCPSERVER)
- Move FORWARD Established,Related rules to inside NAT rules, since without NAT,

View File

@ -18,7 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
FW_VERSION="0.9.14"
FW_VERSION="1.0"
# These option is here to help pre-1.0 users easily upgrade, defines critical defaults
# that would otherwise require remaking their options file. I leave this on by default,
@ -1129,7 +1129,7 @@ fi
if [ $TWEAKS ]; then
for i in `grep -v "\#" $TWEAKS`; do
PROCOPT=( ${i//=/ } )
echo ${PROCOPT[1]} > /proc/sys/net/${PROCOPT[0]} &>/dev/null
echo ${PROCOPT[1]} > /proc/sys/net/${PROCOPT[0]}
done
fi