From 672c3420a06c617b84df779ba8d0f36915add0b8 Mon Sep 17 00:00:00 2001 From: Tuomo Soini Date: Thu, 27 May 2021 01:44:15 +0300 Subject: [PATCH 1/8] support: update chat server address --- docs/support.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/support.xml b/docs/support.xml index 5c8f84f65..0231edc59 100644 --- a/docs/support.xml +++ b/docs/support.xml @@ -441,7 +441,7 @@ State:Stopped (Thu Mar 30 14:08:11 PDT 2006) below). For quick questions, there is also - a #shorewall channel at irc.freenode.net. + a #shorewall channel at irc.libera.chat.
From c941cf4bb56fe17e31fd4672e04fedc4a2cbba4b Mon Sep 17 00:00:00 2001 From: Christian Ruppert Date: Fri, 1 Apr 2022 16:41:05 +0200 Subject: [PATCH 2/8] Run iptables -w check against a usually small chain The iptablesw check, that's just looking for whether -w is supported or not, previousely caused iptables to list all rules, each time you do a shorewall check or shorewall start/reload. That might be quite a lot, depending on the amount of rules you have. It is also no necessary to parse each rule just to check for -w. Let's switch to the usually much smaller INPUT chain, to reduce the overhead --- Shorewall/Perl/Shorewall/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index d823ae997..558a0b5cc 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -5818,7 +5818,7 @@ sub get_capabilities($) # # Determine if iptables supports the -w option # - $iptablesw = qt1( "$iptables -w -L -n") ? '-w' : ''; + $iptablesw = qt1( "$iptables -w -n -L INPUT") ? '-w' : ''; my $iptables_restore=$iptables . '-restore'; From 8b0d829531ae1801b89feb7c3a646e0558ca00aa Mon Sep 17 00:00:00 2001 From: Christian Ruppert Date: Sat, 2 Apr 2022 11:49:25 +0200 Subject: [PATCH 3/8] Check for wait option if we don't have capabilities Only check for iptables --wait option if we don't already have existing capabilities. If we have some and they're not up2date / don't match, it will issue a warning anyway. If a valid capabilities file exists, it will already cover whether we can use --wait or not, that's what WAIT_OPTION is for. Signed-off-by: Christian Ruppert --- Shorewall/Perl/Shorewall/Config.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index 558a0b5cc..ae3efcf4f 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -5816,9 +5816,10 @@ sub get_capabilities($) fatal_error "Can't find $toolname executable" unless $iptables = which $toolname; } # - # Determine if iptables supports the -w option + # Determine if iptables supports the -w option unless we already have + # existing capabilities # - $iptablesw = qt1( "$iptables -w -n -L INPUT") ? '-w' : ''; + $iptablesw = qt1( "$iptables -w -n -L INPUT") ? '-w' : '' unless $_[0]; my $iptables_restore=$iptables . '-restore'; From c1e58f6faf96e55db1f749d83be89b3e2f325f99 Mon Sep 17 00:00:00 2001 From: Vincas Dargis Date: Sun, 18 Sep 2022 15:04:42 +0300 Subject: [PATCH 4/8] Add TorMetrics macro Add macro for Tor metrics port. See https://support.torproject.org/relay-operators/relay-bridge-overloaded/ --- Shorewall/Macros/macro.TorMetrics | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Shorewall/Macros/macro.TorMetrics diff --git a/Shorewall/Macros/macro.TorMetrics b/Shorewall/Macros/macro.TorMetrics new file mode 100644 index 000000000..132a35276 --- /dev/null +++ b/Shorewall/Macros/macro.TorMetrics @@ -0,0 +1,8 @@ +# +# Shorewall --/usr/share/shorewall/macro.TorMetrics +# +# Macro for handling Tor Onion Network traffic +# +############################################################################################################################################################## +#ACTION SOURCE DEST PROTO DPORT SPORT ORIGDEST RATE USER MARK CONNLIMIT TIME HEADERS SWITCH HELPER +PARAM - - tcp 9035 From 23f66180e928a50cad2787e39b35ebab10066e9f Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Tue, 31 Jan 2023 20:39:25 +0000 Subject: [PATCH 5/8] Restore omitted words from `stop` command description In commit c061d879194c ("Fix links in shorewall(8)") the end of one of the sentences in the description of the `stop` command was erroneously truncated. Fixes: c061d879194c ("Fix links in shorewall(8)") Signed-off-by: Jeremy Sowden --- Shorewall-core/manpages/shorewall.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Shorewall-core/manpages/shorewall.xml b/Shorewall-core/manpages/shorewall.xml index b952c31fb..15d12add1 100644 --- a/Shorewall-core/manpages/shorewall.xml +++ b/Shorewall-core/manpages/shorewall.xml @@ -2921,9 +2921,9 @@ listed in shorewall-stoppedrules(5) or permitted by the ADMINISABSENTMINDED option in shorewall.conf The only - new traffic permitted through the firewall is from systems listed in - shorewall.conf, are taken + down. The only new traffic permitted through the firewall is from + systems listed in shorewall-stoppedrules(5) or by ADMINISABSENTMINDED. From 5637385507c8f11b9002fa7fb678db28eccbef38 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Mon, 16 Jan 2023 22:57:28 +0000 Subject: [PATCH 6/8] Document related man-pages in Debian systemd service files Signed-off-by: Jeremy Sowden --- Shorewall-init/shorewall-init.service.debian | 1 + Shorewall-lite/shorewall-lite.service.debian | 1 + Shorewall/shorewall.service.debian | 1 + Shorewall6-lite/shorewall6-lite.service.debian | 1 + Shorewall6/shorewall6.service.debian | 1 + 5 files changed, 5 insertions(+) diff --git a/Shorewall-init/shorewall-init.service.debian b/Shorewall-init/shorewall-init.service.debian index 303b5123b..77b9e4f53 100644 --- a/Shorewall-init/shorewall-init.service.debian +++ b/Shorewall-init/shorewall-init.service.debian @@ -6,6 +6,7 @@ # [Unit] Description=Shorewall firewall (bootup security) +Documentation=man:shorewall-init(8) Before=network.target [Service] diff --git a/Shorewall-lite/shorewall-lite.service.debian b/Shorewall-lite/shorewall-lite.service.debian index 8d0755379..4eeaee8aa 100644 --- a/Shorewall-lite/shorewall-lite.service.debian +++ b/Shorewall-lite/shorewall-lite.service.debian @@ -6,6 +6,7 @@ # [Unit] Description=Shorewall IPv4 firewall (lite) +Documentation=man:shorewall-lite(8) Wants=network-online.target After=network-online.target Conflicts=iptables.service firewalld.service diff --git a/Shorewall/shorewall.service.debian b/Shorewall/shorewall.service.debian index eadfb2a9e..7e4f04461 100644 --- a/Shorewall/shorewall.service.debian +++ b/Shorewall/shorewall.service.debian @@ -6,6 +6,7 @@ # [Unit] Description=Shorewall IPv4 firewall +Documentation=man:shorewall(8) Wants=network-online.target After=network-online.target Conflicts=iptables.service firewalld.service diff --git a/Shorewall6-lite/shorewall6-lite.service.debian b/Shorewall6-lite/shorewall6-lite.service.debian index 419de7e90..e101cd204 100644 --- a/Shorewall6-lite/shorewall6-lite.service.debian +++ b/Shorewall6-lite/shorewall6-lite.service.debian @@ -5,6 +5,7 @@ # [Unit] Description=Shorewall IPv6 firewall (lite) +Documentation=man:shorewall6-lite(8) Wants=network-online.target After=network-online.target After=shorewall-lite.service diff --git a/Shorewall6/shorewall6.service.debian b/Shorewall6/shorewall6.service.debian index 00b581dc9..1ad666a29 100644 --- a/Shorewall6/shorewall6.service.debian +++ b/Shorewall6/shorewall6.service.debian @@ -6,6 +6,7 @@ # [Unit] Description=Shorewall IPv6 firewall +Documentation=man:shorewall6(8) Wants=network-online.target After=network-online.target After=shorewall.service From c93817f30b0d8b5b64fde2cf77bc0ca9bdd3d372 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Thu, 19 Jan 2023 22:17:25 +0000 Subject: [PATCH 7/8] Correct GFDL text embedded in document sources The invariant sections clause doesn't quite match the official text. It should read: with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts not: with no Invariant Sections, with no Front-Cover, and with no Back-Cover Texts Signed-off-by: Jeremy Sowden --- docs/6to4.xml | 2 +- docs/Accounting.xml | 2 +- docs/Actions.xml | 2 +- docs/Anatomy.xml | 2 +- docs/Anti-Spoofing.xml | 2 +- docs/Audit.xml | 2 +- docs/Build.xml | 2 +- docs/CompiledPrograms.xml | 2 +- docs/ConnectionRate.xml | 2 +- docs/Docker.xml | 2 +- docs/Documentation_Index.xml | 2 +- docs/Dynamic.xml | 2 +- docs/ECN.xml | 2 +- docs/Events.xml | 2 +- docs/FAQ.xml | 2 +- docs/FAQ_fr.xml | 4 ++-- docs/FTP.xml | 2 +- docs/FoolsFirewall.xml | 2 +- docs/GenericTunnels.xml | 2 +- docs/GettingStarted.xml | 2 +- docs/Helpers.xml | 2 +- docs/IPIP.xml | 2 +- docs/IPP2P.xml | 2 +- docs/IPSEC-2.6.xml | 2 +- docs/IPSEC.xml | 2 +- docs/IPv6Support.xml | 2 +- docs/ISO-3661.xml | 2 +- docs/Install.xml | 2 +- docs/Install_fr.xml | 4 ++-- docs/Internals.xml | 2 +- docs/Introduction.xml | 2 +- docs/KVM.xml | 2 +- docs/LXC.xml | 2 +- docs/Laptop.xml | 2 +- docs/LennyToSqueeze.xml | 2 +- docs/MAC_Validation.xml | 2 +- docs/Macros.xml | 2 +- docs/Manpages.xml | 2 +- docs/ManualChains.xml | 2 +- docs/MultiISP.xml | 2 +- docs/Multiple_Zones.xml | 2 +- docs/MyNetwork.xml | 2 +- docs/NAT.xml | 2 +- docs/NetfilterOverview.xml | 2 +- docs/NewRelease.xml | 2 +- docs/OPENVPN.xml | 2 +- docs/OpenVZ.xml | 2 +- docs/PPTP.xml | 2 +- docs/PacketHandling.xml | 2 +- docs/PacketMarking.xml | 2 +- docs/PortKnocking.xml | 2 +- docs/ProxyARP.xml | 2 +- docs/QOSExample.xml | 2 +- docs/ReleaseModel.xml | 2 +- docs/SharedConfig.xml | 2 +- docs/Shorewall-4.xml | 2 +- docs/Shorewall-5.xml | 2 +- docs/Shorewall-Lite.xml | 2 +- docs/Shorewall-init.xml | 2 +- docs/Shorewall-perl.xml | 2 +- docs/Shorewall_Doesnt.xml | 2 +- docs/Shorewall_Squid_Usage.xml | 2 +- docs/Shorewall_and_Aliased_Interfaces.xml | 2 +- docs/Shorewall_and_Kazaa.xml | 2 +- docs/Shorewall_and_Routing.xml | 2 +- docs/SimpleBridge.xml | 2 +- docs/SplitDNS.xml | 2 +- docs/UPnP.xml | 2 +- docs/Universal.xml | 2 +- docs/VPN.xml | 2 +- docs/VPNBasics.xml | 2 +- docs/Vserver.xml | 2 +- docs/XenMyWay-Routed.xml | 2 +- docs/XenMyWay.xml | 2 +- docs/blacklisting_support.xml | 2 +- docs/bridge-Shorewall-perl.xml | 2 +- docs/bridge_fr.xml | 4 ++-- docs/configuration_file_basics.xml | 2 +- docs/dhcp.xml | 2 +- docs/fallback.xml | 2 +- docs/ipsets.xml | 2 +- docs/kernel.xml | 2 +- docs/netmap.xml | 2 +- docs/ping.xml | 2 +- docs/ports.xml | 2 +- docs/quotes.xml | 2 +- docs/samba.xml | 2 +- docs/shorewall_extension_scripts.xml | 2 +- docs/shorewall_features.xml | 2 +- docs/shorewall_logging.xml | 2 +- docs/shorewall_prerequisites.xml | 2 +- docs/shorewall_quickstart_guide.xml | 2 +- docs/shorewall_setup_guide.xml | 2 +- docs/shorewall_setup_guide_fr.xml | 4 ++-- docs/simple_traffic_shaping.xml | 2 +- docs/standalone.xml | 2 +- docs/standalone_fr.xml | 2 +- docs/standalone_ru.xml | 2 +- docs/starting_and_stopping_shorewall.xml | 2 +- docs/support.xml | 2 +- docs/survey-200603.xml | 2 +- docs/template.xml | 2 +- docs/three-interface.xml | 2 +- docs/three-interface_fr.xml | 4 ++-- docs/three-interface_ru.xml | 2 +- docs/traffic_shaping.xml | 2 +- docs/troubleshoot.xml | 2 +- docs/two-interface.xml | 2 +- docs/two-interface_fr.xml | 4 ++-- docs/two-interface_ru.xml | 2 +- docs/upgrade_issues.xml | 2 +- docs/useful_links.xml | 2 +- docs/whitelisting_under_shorewall.xml | 2 +- 113 files changed, 119 insertions(+), 119 deletions(-) diff --git a/docs/6to4.xml b/docs/6to4.xml index 31455a413..de135b631 100644 --- a/docs/6to4.xml +++ b/docs/6to4.xml @@ -39,7 +39,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Accounting.xml b/docs/Accounting.xml index 62635fabc..d9506149e 100644 --- a/docs/Accounting.xml +++ b/docs/Accounting.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Actions.xml b/docs/Actions.xml index 6763960ba..4f37d937f 100644 --- a/docs/Actions.xml +++ b/docs/Actions.xml @@ -41,7 +41,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Anatomy.xml b/docs/Anatomy.xml index ee53eae92..735fe9124 100644 --- a/docs/Anatomy.xml +++ b/docs/Anatomy.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Anti-Spoofing.xml b/docs/Anti-Spoofing.xml index 0f06b07c1..79c01ce19 100644 --- a/docs/Anti-Spoofing.xml +++ b/docs/Anti-Spoofing.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Audit.xml b/docs/Audit.xml index 59c3d9b98..e43cbe16f 100644 --- a/docs/Audit.xml +++ b/docs/Audit.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Build.xml b/docs/Build.xml index 2ce2120a2..ab330cd72 100644 --- a/docs/Build.xml +++ b/docs/Build.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/CompiledPrograms.xml b/docs/CompiledPrograms.xml index fb609e3d9..977206049 100644 --- a/docs/CompiledPrograms.xml +++ b/docs/CompiledPrograms.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ConnectionRate.xml b/docs/ConnectionRate.xml index 98fb8ab2d..7cee704de 100644 --- a/docs/ConnectionRate.xml +++ b/docs/ConnectionRate.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Docker.xml b/docs/Docker.xml index 02b9bd186..b467c827f 100644 --- a/docs/Docker.xml +++ b/docs/Docker.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Documentation_Index.xml b/docs/Documentation_Index.xml index e3f2845d3..eabe0cb71 100644 --- a/docs/Documentation_Index.xml +++ b/docs/Documentation_Index.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Dynamic.xml b/docs/Dynamic.xml index a8d96e8f4..f82507965 100644 --- a/docs/Dynamic.xml +++ b/docs/Dynamic.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ECN.xml b/docs/ECN.xml index b73ae6351..23ba03b3d 100644 --- a/docs/ECN.xml +++ b/docs/ECN.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Events.xml b/docs/Events.xml index e70665cb8..a485f8641 100644 --- a/docs/Events.xml +++ b/docs/Events.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/FAQ.xml b/docs/FAQ.xml index a6701a76f..93327c616 100644 --- a/docs/FAQ.xml +++ b/docs/FAQ.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License . diff --git a/docs/FAQ_fr.xml b/docs/FAQ_fr.xml index fe3f38e8f..565b68c48 100644 --- a/docs/FAQ_fr.xml +++ b/docs/FAQ_fr.xml @@ -56,7 +56,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License . @@ -2458,4 +2458,4 @@ loc $FW ACCEPT avec les deux politiques fixées ci-dessus.
- \ No newline at end of file + diff --git a/docs/FTP.xml b/docs/FTP.xml index 4cd799c8d..7d6a1271e 100644 --- a/docs/FTP.xml +++ b/docs/FTP.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/FoolsFirewall.xml b/docs/FoolsFirewall.xml index ad8d5ad8e..0f80da2e5 100644 --- a/docs/FoolsFirewall.xml +++ b/docs/FoolsFirewall.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/GenericTunnels.xml b/docs/GenericTunnels.xml index 83427e02c..8dd53818d 100644 --- a/docs/GenericTunnels.xml +++ b/docs/GenericTunnels.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/GettingStarted.xml b/docs/GettingStarted.xml index 514ba5bb6..a1360e1b0 100644 --- a/docs/GettingStarted.xml +++ b/docs/GettingStarted.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Helpers.xml b/docs/Helpers.xml index 7cd2f0b39..d8a707757 100644 --- a/docs/Helpers.xml +++ b/docs/Helpers.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/IPIP.xml b/docs/IPIP.xml index 3982b1e2d..007203662 100644 --- a/docs/IPIP.xml +++ b/docs/IPIP.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/IPP2P.xml b/docs/IPP2P.xml index 93af7d98b..04a004588 100644 --- a/docs/IPP2P.xml +++ b/docs/IPP2P.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/IPSEC-2.6.xml b/docs/IPSEC-2.6.xml index 0d0902483..79a598fa3 100644 --- a/docs/IPSEC-2.6.xml +++ b/docs/IPSEC-2.6.xml @@ -47,7 +47,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/IPSEC.xml b/docs/IPSEC.xml index d361f9cd2..82dabb89f 100644 --- a/docs/IPSEC.xml +++ b/docs/IPSEC.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/IPv6Support.xml b/docs/IPv6Support.xml index 1bb237d73..a76e73c2e 100644 --- a/docs/IPv6Support.xml +++ b/docs/IPv6Support.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ISO-3661.xml b/docs/ISO-3661.xml index 160f86505..ad5257f75 100644 --- a/docs/ISO-3661.xml +++ b/docs/ISO-3661.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Install.xml b/docs/Install.xml index e3d61d8e4..26897efb9 100644 --- a/docs/Install.xml +++ b/docs/Install.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Install_fr.xml b/docs/Install_fr.xml index 23c0a72f1..dce6b59f5 100644 --- a/docs/Install_fr.xml +++ b/docs/Install_fr.xml @@ -56,7 +56,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. @@ -712,4 +712,4 @@ tar -xzvf /mnt/package2.lrp Voir Fallback and Uninstall. - \ No newline at end of file + diff --git a/docs/Internals.xml b/docs/Internals.xml index 51f362440..ef9ab2b56 100644 --- a/docs/Internals.xml +++ b/docs/Internals.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Introduction.xml b/docs/Introduction.xml index 9278ae885..10fd05eb0 100644 --- a/docs/Introduction.xml +++ b/docs/Introduction.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/KVM.xml b/docs/KVM.xml index 1ca050bb1..bbffb6d1e 100644 --- a/docs/KVM.xml +++ b/docs/KVM.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/LXC.xml b/docs/LXC.xml index 5fecf806c..3655876b0 100644 --- a/docs/LXC.xml +++ b/docs/LXC.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Laptop.xml b/docs/Laptop.xml index 33bbea1af..e411719b5 100644 --- a/docs/Laptop.xml +++ b/docs/Laptop.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/LennyToSqueeze.xml b/docs/LennyToSqueeze.xml index 2951e1332..2ec1dc23f 100644 --- a/docs/LennyToSqueeze.xml +++ b/docs/LennyToSqueeze.xml @@ -30,7 +30,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/MAC_Validation.xml b/docs/MAC_Validation.xml index 116ca592d..b65db4632 100644 --- a/docs/MAC_Validation.xml +++ b/docs/MAC_Validation.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Macros.xml b/docs/Macros.xml index a13224bc8..e9065b22f 100644 --- a/docs/Macros.xml +++ b/docs/Macros.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Manpages.xml b/docs/Manpages.xml index 695819ea3..cb1f07167 100644 --- a/docs/Manpages.xml +++ b/docs/Manpages.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ManualChains.xml b/docs/ManualChains.xml index d914d52d3..6c0964f9c 100644 --- a/docs/ManualChains.xml +++ b/docs/ManualChains.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/MultiISP.xml b/docs/MultiISP.xml index 4cdb1b1bd..9b3a4ebae 100644 --- a/docs/MultiISP.xml +++ b/docs/MultiISP.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Multiple_Zones.xml b/docs/Multiple_Zones.xml index 7467bc568..b4bc463ad 100644 --- a/docs/Multiple_Zones.xml +++ b/docs/Multiple_Zones.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/MyNetwork.xml b/docs/MyNetwork.xml index 596a5518c..2af976ca2 100644 --- a/docs/MyNetwork.xml +++ b/docs/MyNetwork.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/NAT.xml b/docs/NAT.xml index f7f2d5490..99c1b63e3 100644 --- a/docs/NAT.xml +++ b/docs/NAT.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/NetfilterOverview.xml b/docs/NetfilterOverview.xml index ccfcea008..2b984c53a 100644 --- a/docs/NetfilterOverview.xml +++ b/docs/NetfilterOverview.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/NewRelease.xml b/docs/NewRelease.xml index c00b6bacd..36034278f 100644 --- a/docs/NewRelease.xml +++ b/docs/NewRelease.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/OPENVPN.xml b/docs/OPENVPN.xml index f6f6b102d..62d6b5fea 100644 --- a/docs/OPENVPN.xml +++ b/docs/OPENVPN.xml @@ -41,7 +41,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/OpenVZ.xml b/docs/OpenVZ.xml index 2439930d3..b7fa7c104 100644 --- a/docs/OpenVZ.xml +++ b/docs/OpenVZ.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/PPTP.xml b/docs/PPTP.xml index 6bda91ac8..69e116244 100644 --- a/docs/PPTP.xml +++ b/docs/PPTP.xml @@ -39,7 +39,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/PacketHandling.xml b/docs/PacketHandling.xml index 5347946d6..82766a186 100644 --- a/docs/PacketHandling.xml +++ b/docs/PacketHandling.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/PacketMarking.xml b/docs/PacketMarking.xml index 73e374559..28dce9ada 100644 --- a/docs/PacketMarking.xml +++ b/docs/PacketMarking.xml @@ -30,7 +30,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/PortKnocking.xml b/docs/PortKnocking.xml index db13f2773..645f30986 100644 --- a/docs/PortKnocking.xml +++ b/docs/PortKnocking.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ProxyARP.xml b/docs/ProxyARP.xml index fe8f6446f..c52b2f180 100644 --- a/docs/ProxyARP.xml +++ b/docs/ProxyARP.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/QOSExample.xml b/docs/QOSExample.xml index c5099f28d..d516760a3 100644 --- a/docs/QOSExample.xml +++ b/docs/QOSExample.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ReleaseModel.xml b/docs/ReleaseModel.xml index 0f1e20223..e2ae31819 100644 --- a/docs/ReleaseModel.xml +++ b/docs/ReleaseModel.xml @@ -43,7 +43,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/SharedConfig.xml b/docs/SharedConfig.xml index 1c2b46ddc..77df260f3 100644 --- a/docs/SharedConfig.xml +++ b/docs/SharedConfig.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall-4.xml b/docs/Shorewall-4.xml index c02bdea5e..150e0af5b 100644 --- a/docs/Shorewall-4.xml +++ b/docs/Shorewall-4.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall-5.xml b/docs/Shorewall-5.xml index ec2323e62..9d0d552db 100644 --- a/docs/Shorewall-5.xml +++ b/docs/Shorewall-5.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall-Lite.xml b/docs/Shorewall-Lite.xml index 00d3d9565..ec40d7d2c 100644 --- a/docs/Shorewall-Lite.xml +++ b/docs/Shorewall-Lite.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall-init.xml b/docs/Shorewall-init.xml index c900bce09..40c336d71 100644 --- a/docs/Shorewall-init.xml +++ b/docs/Shorewall-init.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall-perl.xml b/docs/Shorewall-perl.xml index 112286b79..17f902de6 100644 --- a/docs/Shorewall-perl.xml +++ b/docs/Shorewall-perl.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall_Doesnt.xml b/docs/Shorewall_Doesnt.xml index 413f6f0d1..52fdc53b9 100644 --- a/docs/Shorewall_Doesnt.xml +++ b/docs/Shorewall_Doesnt.xml @@ -25,7 +25,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall_Squid_Usage.xml b/docs/Shorewall_Squid_Usage.xml index edb0f53a4..6274adc0b 100644 --- a/docs/Shorewall_Squid_Usage.xml +++ b/docs/Shorewall_Squid_Usage.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License . diff --git a/docs/Shorewall_and_Aliased_Interfaces.xml b/docs/Shorewall_and_Aliased_Interfaces.xml index c280a5a8a..9ee9d3de5 100644 --- a/docs/Shorewall_and_Aliased_Interfaces.xml +++ b/docs/Shorewall_and_Aliased_Interfaces.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall_and_Kazaa.xml b/docs/Shorewall_and_Kazaa.xml index 7f02c8393..258491204 100644 --- a/docs/Shorewall_and_Kazaa.xml +++ b/docs/Shorewall_and_Kazaa.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Shorewall_and_Routing.xml b/docs/Shorewall_and_Routing.xml index f48c9d9ac..69906dcb2 100644 --- a/docs/Shorewall_and_Routing.xml +++ b/docs/Shorewall_and_Routing.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/SimpleBridge.xml b/docs/SimpleBridge.xml index f3c3307ee..63422317d 100644 --- a/docs/SimpleBridge.xml +++ b/docs/SimpleBridge.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/SplitDNS.xml b/docs/SplitDNS.xml index 151c32c1c..b0c10de83 100644 --- a/docs/SplitDNS.xml +++ b/docs/SplitDNS.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/UPnP.xml b/docs/UPnP.xml index 430c78005..dec23c43f 100644 --- a/docs/UPnP.xml +++ b/docs/UPnP.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Universal.xml b/docs/Universal.xml index a1842d2a2..fcb0c99f2 100644 --- a/docs/Universal.xml +++ b/docs/Universal.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/VPN.xml b/docs/VPN.xml index 68f690e40..e11fedd67 100644 --- a/docs/VPN.xml +++ b/docs/VPN.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/VPNBasics.xml b/docs/VPNBasics.xml index 4a8e6f665..1df50f50d 100644 --- a/docs/VPNBasics.xml +++ b/docs/VPNBasics.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/Vserver.xml b/docs/Vserver.xml index 0009529c0..f39e9ed87 100644 --- a/docs/Vserver.xml +++ b/docs/Vserver.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/XenMyWay-Routed.xml b/docs/XenMyWay-Routed.xml index c12168a79..72569ccf8 100644 --- a/docs/XenMyWay-Routed.xml +++ b/docs/XenMyWay-Routed.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/XenMyWay.xml b/docs/XenMyWay.xml index 0c41f9f3f..ba058fd39 100644 --- a/docs/XenMyWay.xml +++ b/docs/XenMyWay.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/blacklisting_support.xml b/docs/blacklisting_support.xml index 0eb7ec000..309cadf6d 100644 --- a/docs/blacklisting_support.xml +++ b/docs/blacklisting_support.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/bridge-Shorewall-perl.xml b/docs/bridge-Shorewall-perl.xml index 69ab7aa66..a81551dd8 100644 --- a/docs/bridge-Shorewall-perl.xml +++ b/docs/bridge-Shorewall-perl.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/bridge_fr.xml b/docs/bridge_fr.xml index 31ce41e02..07517d1a1 100644 --- a/docs/bridge_fr.xml +++ b/docs/bridge_fr.xml @@ -54,7 +54,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. @@ -680,4 +680,4 @@ dmz br0:eth2 - \ No newline at end of file + diff --git a/docs/configuration_file_basics.xml b/docs/configuration_file_basics.xml index 50b518200..bd1893ed5 100644 --- a/docs/configuration_file_basics.xml +++ b/docs/configuration_file_basics.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/dhcp.xml b/docs/dhcp.xml index 26dfc3648..f9ae14815 100644 --- a/docs/dhcp.xml +++ b/docs/dhcp.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/fallback.xml b/docs/fallback.xml index 86b3c57e1..dee8db7a7 100644 --- a/docs/fallback.xml +++ b/docs/fallback.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ipsets.xml b/docs/ipsets.xml index 520413a6b..c84932b6e 100644 --- a/docs/ipsets.xml +++ b/docs/ipsets.xml @@ -39,7 +39,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/kernel.xml b/docs/kernel.xml index 5b251f43d..11d660fa7 100644 --- a/docs/kernel.xml +++ b/docs/kernel.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/netmap.xml b/docs/netmap.xml index 00dda677a..b60754722 100644 --- a/docs/netmap.xml +++ b/docs/netmap.xml @@ -31,7 +31,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ping.xml b/docs/ping.xml index 9ab8d5cfb..ba7f3ec75 100644 --- a/docs/ping.xml +++ b/docs/ping.xml @@ -25,7 +25,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/ports.xml b/docs/ports.xml index 0bf817eb7..a62f05120 100644 --- a/docs/ports.xml +++ b/docs/ports.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/quotes.xml b/docs/quotes.xml index e8313986e..4f66d0179 100644 --- a/docs/quotes.xml +++ b/docs/quotes.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/samba.xml b/docs/samba.xml index e60dbe3d0..4626a71f7 100644 --- a/docs/samba.xml +++ b/docs/samba.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_extension_scripts.xml b/docs/shorewall_extension_scripts.xml index 51209b552..f81a4d479 100644 --- a/docs/shorewall_extension_scripts.xml +++ b/docs/shorewall_extension_scripts.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_features.xml b/docs/shorewall_features.xml index 98c110721..586728ba2 100644 --- a/docs/shorewall_features.xml +++ b/docs/shorewall_features.xml @@ -25,7 +25,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_logging.xml b/docs/shorewall_logging.xml index 833783770..c0a43b546 100644 --- a/docs/shorewall_logging.xml +++ b/docs/shorewall_logging.xml @@ -33,7 +33,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_prerequisites.xml b/docs/shorewall_prerequisites.xml index ef76ed70a..7b769e7d8 100644 --- a/docs/shorewall_prerequisites.xml +++ b/docs/shorewall_prerequisites.xml @@ -25,7 +25,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_quickstart_guide.xml b/docs/shorewall_quickstart_guide.xml index 970ebd46e..f249d4177 100644 --- a/docs/shorewall_quickstart_guide.xml +++ b/docs/shorewall_quickstart_guide.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_setup_guide.xml b/docs/shorewall_setup_guide.xml index 1bae16521..dc63043c7 100644 --- a/docs/shorewall_setup_guide.xml +++ b/docs/shorewall_setup_guide.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/shorewall_setup_guide_fr.xml b/docs/shorewall_setup_guide_fr.xml index 956848914..6ad2cccda 100644 --- a/docs/shorewall_setup_guide_fr.xml +++ b/docs/shorewall_setup_guide_fr.xml @@ -64,7 +64,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. @@ -2649,4 +2649,4 @@ foobar.net. 86400 IN A 192.0.2.177 try - \ No newline at end of file + diff --git a/docs/simple_traffic_shaping.xml b/docs/simple_traffic_shaping.xml index 5a2dc8d61..2e3baa14a 100644 --- a/docs/simple_traffic_shaping.xml +++ b/docs/simple_traffic_shaping.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/standalone.xml b/docs/standalone.xml index 37ccaff80..6b81b5c51 100644 --- a/docs/standalone.xml +++ b/docs/standalone.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/standalone_fr.xml b/docs/standalone_fr.xml index 82509e5fa..0334a7d1f 100644 --- a/docs/standalone_fr.xml +++ b/docs/standalone_fr.xml @@ -74,7 +74,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/standalone_ru.xml b/docs/standalone_ru.xml index 9f35c184d..fce0deeb0 100644 --- a/docs/standalone_ru.xml +++ b/docs/standalone_ru.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/starting_and_stopping_shorewall.xml b/docs/starting_and_stopping_shorewall.xml index 09d475f17..8c3cdf3ed 100644 --- a/docs/starting_and_stopping_shorewall.xml +++ b/docs/starting_and_stopping_shorewall.xml @@ -35,7 +35,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/support.xml b/docs/support.xml index 0231edc59..11f602d31 100644 --- a/docs/support.xml +++ b/docs/support.xml @@ -19,7 +19,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/survey-200603.xml b/docs/survey-200603.xml index 88e007dc5..e517b326b 100644 --- a/docs/survey-200603.xml +++ b/docs/survey-200603.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/template.xml b/docs/template.xml index 39969f823..120323d3e 100644 --- a/docs/template.xml +++ b/docs/template.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/three-interface.xml b/docs/three-interface.xml index ef2c097c5..b909f10e6 100644 --- a/docs/three-interface.xml +++ b/docs/three-interface.xml @@ -29,7 +29,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/three-interface_fr.xml b/docs/three-interface_fr.xml index 4c5a54a23..5d80b6e21 100644 --- a/docs/three-interface_fr.xml +++ b/docs/three-interface_fr.xml @@ -74,7 +74,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. @@ -1194,4 +1194,4 @@ ACCEPT net $FW tcp 80 - \ No newline at end of file + diff --git a/docs/three-interface_ru.xml b/docs/three-interface_ru.xml index 2d8bde0e1..a67a8f929 100644 --- a/docs/three-interface_ru.xml +++ b/docs/three-interface_ru.xml @@ -27,7 +27,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/traffic_shaping.xml b/docs/traffic_shaping.xml index 8959b8549..9495b0ed0 100644 --- a/docs/traffic_shaping.xml +++ b/docs/traffic_shaping.xml @@ -41,7 +41,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/troubleshoot.xml b/docs/troubleshoot.xml index 65baab7ff..0bbbc7263 100644 --- a/docs/troubleshoot.xml +++ b/docs/troubleshoot.xml @@ -25,7 +25,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/two-interface.xml b/docs/two-interface.xml index 72cdc0da2..824294ed3 100644 --- a/docs/two-interface.xml +++ b/docs/two-interface.xml @@ -26,7 +26,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/two-interface_fr.xml b/docs/two-interface_fr.xml index ef0cf8875..87b0c224d 100644 --- a/docs/two-interface_fr.xml +++ b/docs/two-interface_fr.xml @@ -73,7 +73,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. @@ -1316,4 +1316,4 @@ eth0 wlan0 nécessite de configurer les régles nécessaires listées dans le document Shorewall/Samba. - \ No newline at end of file + diff --git a/docs/two-interface_ru.xml b/docs/two-interface_ru.xml index 040b491f3..f88f5f49a 100644 --- a/docs/two-interface_ru.xml +++ b/docs/two-interface_ru.xml @@ -26,7 +26,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/upgrade_issues.xml b/docs/upgrade_issues.xml index 8c6a64abb..5fef105b1 100644 --- a/docs/upgrade_issues.xml +++ b/docs/upgrade_issues.xml @@ -46,7 +46,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/useful_links.xml b/docs/useful_links.xml index 24c502202..201214be4 100644 --- a/docs/useful_links.xml +++ b/docs/useful_links.xml @@ -21,7 +21,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. diff --git a/docs/whitelisting_under_shorewall.xml b/docs/whitelisting_under_shorewall.xml index 2cbed2726..7d4648912 100644 --- a/docs/whitelisting_under_shorewall.xml +++ b/docs/whitelisting_under_shorewall.xml @@ -24,7 +24,7 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with - no Invariant Sections, with no Front-Cover, and with no Back-Cover + no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. From b7f2d1b22e42a67f75de475b28ad04d9dca81bf8 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Sun, 11 Apr 2021 16:12:20 +0100 Subject: [PATCH 8/8] Move '-6' and '-l' options from SRWL to SRWL_OPTS in Debian init-scripts. Changing the definitions of SRWL from /sbin/shorewall6 to '/sbin/shorewall -6' and so on broke the init-scripts since the scripts test whether `$SRWL` is executable: test -x $SRWL || exit 0 which now fails: sh: test: /sbin/shorewall: binary operator expected Signed-off-by: Jeremy Sowden --- Shorewall-lite/init.debian.sh | 4 ++-- Shorewall6-lite/init.debian.sh | 4 ++-- Shorewall6/init.debian.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Shorewall-lite/init.debian.sh b/Shorewall-lite/init.debian.sh index b218a6540..59c1559cc 100755 --- a/Shorewall-lite/init.debian.sh +++ b/Shorewall-lite/init.debian.sh @@ -13,8 +13,8 @@ . /lib/lsb/init-functions -SRWL='/sbin/shorewall -l' -SRWL_OPTS="-tvv" +SRWL=/sbin/shorewall +SRWL_OPTS="-ltvv" test -n ${INITLOG:=/var/log/shorewall-lite-init.log} [ "$INITLOG" = "/dev/null" ] && SHOREWALL_INIT_SCRIPT=1 || SHOREWALL_INIT_SCRIPT=0 diff --git a/Shorewall6-lite/init.debian.sh b/Shorewall6-lite/init.debian.sh index 8ca807ca5..f40ae787a 100755 --- a/Shorewall6-lite/init.debian.sh +++ b/Shorewall6-lite/init.debian.sh @@ -13,8 +13,8 @@ . /lib/lsb/init-functions -SRWL='/sbin/shorewall6-lite -6' -SRWL_OPTS="-tvv" +SRWL=/sbin/shorewall +SRWL_OPTS="-6ltvv" test -n ${INITLOG:=/var/log/shorewall6-lite-init.log} [ "$INITLOG" = "/dev/null" ] && SHOREWALL_INIT_SCRIPT=1 || SHOREWALL_INIT_SCRIPT=0 diff --git a/Shorewall6/init.debian.sh b/Shorewall6/init.debian.sh index a9c0a585f..2396dd6ab 100755 --- a/Shorewall6/init.debian.sh +++ b/Shorewall6/init.debian.sh @@ -12,8 +12,8 @@ . /lib/lsb/init-functions -SRWL='/sbin/shorewall -6' -SRWL_OPTS="-tvv" +SRWL=/sbin/shorewall +SRWL_OPTS="-6tvv" WAIT_FOR_IFUP=/usr/share/shorewall/wait4ifup test -n ${INITLOG:=/var/log/shorewall6-init.log}