local.m4: Fix whitespace oddity.
[firewall] / config.m4
CommitLineData
775bd287 1### -*-sh-*-
bfdc045d
MW
2###
3### Configuration for firewall scripts
4###
5### (c) 2008 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This program is free software; you can redistribute it and/or modify
11### it under the terms of the GNU General Public License as published by
12### the Free Software Foundation; either version 2 of the License, or
13### (at your option) any later version.
14###
15### This program is distributed in the hope that it will be useful,
16### but WITHOUT ANY WARRANTY; without even the implied warranty of
17### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18### GNU General Public License for more details.
19###
20### You should have received a copy of the GNU General Public License
21### along with this program; if not, write to the Free Software Foundation,
22### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
a4d8cae3 24m4_divert(4)m4_dnl
bfdc045d
MW
25###--------------------------------------------------------------------------
26### Configuration.
27
28## Name of this script.
29defconf(firewall_script, /etc/init.d/firewall)
30
5ac64c9b 31## Name of emergency fallback script.
bfdc045d
MW
32defconf(firewall_failsafe, /etc/init.d/firewall.safe)
33
34## Set the range of dynamically allocated ports. Access to these from
35## outside is permitted.
36defconf(open_port_min, 32000)
bc729d0d 37defconf(open_port_max, 64999)
bfdc045d 38
42dae9ae
MW
39## Which chains to preserve.
40defconf(preserve_chains, )
41
bfdc045d
MW
42m4_divert(-1)
43###----- That's all, folks --------------------------------------------------