summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-sysadm/2010-November/000672.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-sysadm/2010-November/000672.html')
-rw-r--r--zarb-ml/mageia-sysadm/2010-November/000672.html147
1 files changed, 147 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2010-November/000672.html b/zarb-ml/mageia-sysadm/2010-November/000672.html
new file mode 100644
index 000000000..cff05fcae
--- /dev/null
+++ b/zarb-ml/mageia-sysadm/2010-November/000672.html
@@ -0,0 +1,147 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-sysadm] [329] - use all_tags instead of classes because of some obscure puppet issues,
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B329%5D%20-%20use%20all_tags%20instead%20of%20classes%20because%20of%0A%20some%20obscure%20puppet%20issues%2C%20&In-Reply-To=%3C20101119201901.CD8993FC09%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="000670.html">
+ <LINK REL="Next" HREF="000671.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-sysadm] [329] - use all_tags instead of classes because of some obscure puppet issues, </H1>
+ <B>root at mageia.org</B>
+ <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B329%5D%20-%20use%20all_tags%20instead%20of%20classes%20because%20of%0A%20some%20obscure%20puppet%20issues%2C%20&In-Reply-To=%3C20101119201901.CD8993FC09%40valstar.mageia.org%3E"
+ TITLE="[Mageia-sysadm] [329] - use all_tags instead of classes because of some obscure puppet issues, ">root at mageia.org
+ </A><BR>
+ <I>Fri Nov 19 21:19:01 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000670.html">[Mageia-sysadm] [328] - add some more attribute, just to be sure
+</A></li>
+ <LI>Next message: <A HREF="000671.html">[Mageia-sysadm] [330] - fix config for secondary smtp
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#672">[ date ]</a>
+ <a href="thread.html#672">[ thread ]</a>
+ <a href="subject.html#672">[ subject ]</a>
+ <a href="author.html#672">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Revision: 329
+Author: misc
+Date: 2010-11-19 21:19:01 +0100 (Fri, 19 Nov 2010)
+Log Message:
+-----------
+- use all_tags instead of classes because of some obscure puppet issues,
+ basically, classes correspond to the classes when the ressource is
+declared, not to the one of the node ( which is given by
+all_tags )
+- remove empty line ( with &lt;%- )
+
+Modified Paths:
+--------------
+ puppet/modules/postfix/templates/main.cf
+
+Modified: puppet/modules/postfix/templates/main.cf
+===================================================================
+--- puppet/modules/postfix/templates/main.cf 2010-11-19 20:19:00 UTC (rev 328)
++++ puppet/modules/postfix/templates/main.cf 2010-11-19 20:19:01 UTC (rev 329)
+@@ -23,7 +23,7 @@
+
+ # User configurable parameters
+
+-&lt;% if classes.include?('postfix::simple_relay') %&gt;
++&lt;% if all_tags.include?('postfix::simple_relay') %&gt;
+ inet_interfaces = localhost
+ &lt;% else %&gt;
+ inet_interfaces = all
+@@ -35,19 +35,19 @@
+ mydomain = &lt;%= domain %&gt;
+ mydestination = &lt;%= fqdn %&gt;
+ myorigin = $mydomain
+-&lt;%- if classes.include?('postfix::smtp_server') -%&gt;
++&lt;%- if all_tags.include?('postfix::smtp_server') -%&gt;
+ relay_domains = $mydestination,
+ ml.&lt;%= domain %&gt;,
+-&lt;%- if classes.include?('postfix::primary_smtp') -%&gt;
++&lt;%- if all_tags.include?('postfix::primary_smtp') -%&gt;
+ &lt;%= domain %&gt;
+ &lt;%- end -%&gt;
+ transport_maps = regexp:/etc/postfix/transport_regexp
+ &lt;%- end -%&gt;
+
+-&lt;% if classes.include?('sympa') %&gt;
++&lt;%- if classes.include?('sympa') -%&gt;
+ sympa_destination_recipient_limit = 1
+ sympabounce_destination_recipient_limit = 1
+-&lt;% end %&gt;
++&lt;%- end -%&gt;
+
+ #delay_warning_time = 4h
+ smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) (Mandriva Linux)
+@@ -59,7 +59,7 @@
+ smtpd_tls_key_file = /etc/pki/tls/private/postfix.pem
+ smtpd_tls_CAfile = /etc/pki/tls/certs/ca-bundle.crt
+
+-&lt;% if classes.include?('postfix::smtp_server') %&gt;
++&lt;%- if all_tags.include?('postfix::smtp_server') -%&gt;
+ smtpd_etrn_restrictions = reject
+
+ smtpd_helo_required = yes
+@@ -67,18 +67,17 @@
+ smtpd_data_restrictions = reject_unauth_pipelining
+ reject_multi_recipient_bounce
+
+-smtpd_recipient_restrictions =
+-# not done yet
+-# permit_sasl_authenticated
+- reject_non_fqdn_recipient
++smtpd_recipient_restrictions = reject_non_fqdn_recipient
+ reject_non_fqdn_sender
++# not done yet, not sure if we need to offer this kind of service
++# permit_sasl_authenticated
+ permit_mynetworks
+ reject_unauth_destination
+ reject_non_fqdn_helo_hostname
+ reject_unknown_sender_domain
+ reject_unknown_client
+- &lt;% if classes.include?('postgrey') %&gt;
++ &lt;%- if classes.include?('postgrey') -%&gt;
+ check_policy_service unix:extern/postgrey/socket
+- &lt;% end %&gt;
+-&lt;% end %&gt;
++ &lt;%- end -%&gt;
++&lt;%- end -%&gt;
+
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-sysadm/attachments/20101119/2e53b517/attachment.html&gt;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000670.html">[Mageia-sysadm] [328] - add some more attribute, just to be sure
+</A></li>
+ <LI>Next message: <A HREF="000671.html">[Mageia-sysadm] [330] - fix config for secondary smtp
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#672">[ date ]</a>
+ <a href="thread.html#672">[ thread ]</a>
+ <a href="subject.html#672">[ subject ]</a>
+ <a href="author.html#672">[ 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>