diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/2010-November/000519.html')
-rw-r--r-- | zarb-ml/mageia-sysadm/2010-November/000519.html | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2010-November/000519.html b/zarb-ml/mageia-sysadm/2010-November/000519.html new file mode 100644 index 000000000..815d862cf --- /dev/null +++ b/zarb-ml/mageia-sysadm/2010-November/000519.html @@ -0,0 +1,136 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-sysadm] [253] don't use a variable for shorewall dir (not working) + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B253%5D%20don%27t%20use%20a%20variable%20for%20shorewall%20dir%20%28not%0A%09working%29&In-Reply-To=%3C20101112223651.EA6353FC0C%40valstar.mageia.org%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="000518.html"> + <LINK REL="Next" HREF="000529.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-sysadm] [253] don't use a variable for shorewall dir (not working)</H1> + <B>root at mageia.org</B> + <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B253%5D%20don%27t%20use%20a%20variable%20for%20shorewall%20dir%20%28not%0A%09working%29&In-Reply-To=%3C20101112223651.EA6353FC0C%40valstar.mageia.org%3E" + TITLE="[Mageia-sysadm] [253] don't use a variable for shorewall dir (not working)">root at mageia.org + </A><BR> + <I>Fri Nov 12 23:36:51 CET 2010</I> + <P><UL> + <LI>Previous message: <A HREF="000518.html">[Mageia-sysadm] [252] use shorewall for shorewall directory +</A></li> + <LI>Next message: <A HREF="000529.html">[Mageia-sysadm] [254] Add params file +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#519">[ date ]</a> + <a href="thread.html#519">[ thread ]</a> + <a href="subject.html#519">[ subject ]</a> + <a href="author.html#519">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Revision: 253 +Author: boklm +Date: 2010-11-12 23:36:51 +0100 (Fri, 12 Nov 2010) +Log Message: +----------- +don't use a variable for shorewall dir (not working) + +Modified Paths: +-------------- + puppet/modules/shorewall/manifests/init.pp + +Modified: puppet/modules/shorewall/manifests/init.pp +=================================================================== +--- puppet/modules/shorewall/manifests/init.pp 2010-11-12 22:33:33 UTC (rev 252) ++++ puppet/modules/shorewall/manifests/init.pp 2010-11-12 22:36:51 UTC (rev 253) +@@ -1,10 +1,8 @@ + class shorewall { + include concat::setup + +- $shorewalldir = "/tmp/shorewall" +- + define shorewallfile () { +- $filename = "${shorewalldir}/${name}" ++ $filename = "/tmp/shorewall/${name}" + $header = "<A HREF="puppet:///modules/shorewall/headers/${name">puppet:///modules/shorewall/headers/${name</A>}" + $footer = "<A HREF="puppet:///modules/shorewall/footers/${name">puppet:///modules/shorewall/footers/${name</A>}" + concat{$filename: +@@ -29,7 +27,7 @@ + ### Rules + shorewallfile{ rules: } + define rule_line($order = 50) { +- $filename = "${shorewalldir}/rules" ++ $filename = "/tmp/shorewall/rules" + $line = "${name}\n" + concat::fragment{"newline_${name}": + target => $filename, +@@ -56,7 +54,7 @@ + ### Zones + shorewallfile{ zones: } + define zone_line($order = 50) { +- $filename = "${shorewalldir}/zones" ++ $filename = "/tmp/shorewall/zones" + $line = "${name}\n" + concat::fragment{"newline_${name}": + target => $filename, +@@ -76,7 +74,7 @@ + ### Policy + shorewallfile{ policy: } + define policy_line($order = 50) { +- $filename = "${shorewalldir}/policy" ++ $filename = "/tmp/shorewall/policy" + $line = "${name}\n" + concat::fragment{"newline_${name}": + target => $filename, +-------------- next part -------------- +An HTML attachment was scrubbed... +URL: </pipermail/mageia-sysadm/attachments/20101112/8768fdcd/attachment.html> +</PRE> + + + + + + + + + + + + + + + + + + + + + + + + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000518.html">[Mageia-sysadm] [252] use shorewall for shorewall directory +</A></li> + <LI>Next message: <A HREF="000529.html">[Mageia-sysadm] [254] Add params file +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#519">[ date ]</a> + <a href="thread.html#519">[ thread ]</a> + <a href="subject.html#519">[ subject ]</a> + <a href="author.html#519">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm +mailing list</a><br> +</body></html> |