configure (shorewall6-5.2.3.6.tar.bz2) | : | configure (shorewall6-5.2.6.tar.bz2) | ||
---|---|---|---|---|
#!/bin/bash | #!/bin/bash | |||
# | # | |||
# Shorewall Packet Filtering Firewall configuration program - V5.2 | # Shorewall Packet Filtering Firewall configuration program - V5.2 | |||
# | # | |||
# (c) 2012,2014,2017 - Tom Eastep (teastep@shorewall.net) | # (c) 2012,2014,2017 - Tom Eastep (teastep@shorewall.net) | |||
# | # | |||
# Shorewall documentation is available at http://www.shorewall.net | # Shorewall documentation is available at https://shorewall.org | |||
# | # | |||
# This program is part of Shorewall. | # This program is part of Shorewall. | |||
# | # | |||
# This program is free software; you can redistribute it and/or modify | # This program is free software; you can redistribute it and/or modify | |||
# it under the terms of the GNU General Public License as published by the | # it under the terms of the GNU General Public License as published by the | |||
# Free Software Foundation, either version 2 of the license or, at your | # Free Software Foundation, either version 2 of the license or, at your | |||
# option, any later version. | # option, any later version. | |||
# | # | |||
# This program is distributed in the hope that it will be useful, | # This program is distributed in the hope that it will be useful, | |||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
skipping to change at line 31 | skipping to change at line 31 | |||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | |||
# along with this program; if not, see <http://www.gnu.org/licenses/>. | # along with this program; if not, see <http://www.gnu.org/licenses/>. | |||
# | # | |||
# Usage: ./configure [ <option>=<setting> ] ... | # Usage: ./configure [ <option>=<setting> ] ... | |||
# | # | |||
# | # | |||
################################################################################ ################ | ################################################################################ ################ | |||
# | # | |||
# Build updates this | # Build updates this | |||
# | # | |||
VERSION=5.2.3.6 | VERSION=5.2.6 | |||
case "$BASH_VERSION" in | case "$BASH_VERSION" in | |||
[4-9].*) | [4-9].*) | |||
;; | ;; | |||
*) | *) | |||
echo "ERROR: This program requires Bash 4.0 or later" >&2 | echo "ERROR: This program requires Bash 4.0 or later" >&2 | |||
exit 1 | exit 1 | |||
;; | ;; | |||
esac | esac | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |