mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-22 11:17:31 +01:00
* configlets/linux24/shell_functions: see #2130 "unnecessary output when iptables script runs on the firewall". Ever since I switched to using "command" to verify that various system utilities generated script needs are present and can be used, the scirpt produced extra lines in the log printing full path and names to /usr/bin/logger, /sbin/ip etc. These lines are unnecessary and should not be there. This problem was introduced some time during the work on 4.2.0
20 lines
409 B
Bash
20 lines
409 B
Bash
#-*- mode: shell-script; tab-width: 4; -*-
|
|
|
|
FWB_MAJOR_VERSION=4
|
|
FWB_MINOR_VERSION=2
|
|
FWB_MICRO_VERSION=0
|
|
|
|
# build number is like "nano" version number. I am incrementing build
|
|
# number during development cycle
|
|
#
|
|
BUILD_NUM="3485"
|
|
|
|
VERSION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION.$FWB_MICRO_VERSION.$BUILD_NUM"
|
|
|
|
GENERATION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION"
|
|
|
|
# Data format version
|
|
FWBUILDER_XML_VERSION=18
|
|
|
|
|