diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/attachments/20101109')
18 files changed, 1844 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/3dd92efc/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/3dd92efc/attachment-0001.html new file mode 100644 index 000000000..67986c42a --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/3dd92efc/attachment-0001.html @@ -0,0 +1,130 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[211] - replace hardcoded domain by a variable, to ease reuse of the module </title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>211</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-09 03:21:57 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- replace hardcoded domain by a variable, to ease reuse of the module </pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesopenldaptemplatesslapdconf">puppet/modules/openldap/templates/slapd.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesopenldaptemplatesslapdconf">Modified: puppet/modules/openldap/templates/slapd.conf</a> +=================================================================== +--- puppet/modules/openldap/templates/slapd.conf 2010-11-08 23:18:50 UTC (rev 210) ++++ puppet/modules/openldap/templates/slapd.conf 2010-11-09 02:21:57 UTC (rev 211) +@@ -1,3 +1,9 @@ ++<% ++dc_suffix = 'dc=' + domain.gsub('.',',dc=') ++path_module_directory = "/usr/lib" + ( architecture == "x86_64" ? '64' : '') + "/openldap" ++ ++%> ++ + # slapd.conf template + include /usr/share/openldap/schema/core.schema + include /usr/share/openldap/schema/cosine.schema +@@ -26,10 +32,6 @@ + pidfile /var/run/ldap/slapd.pid + argsfile /var/run/ldap/slapd.args + +-<% +-path_module_directory = "/usr/lib" + ( architecture == "x86_64" ? '64' : '') + "/openldap" +-%> +- + modulepath <%= path_module_directory %> + moduleload back_monitor.la + moduleload syncprov.la +@@ -51,9 +53,9 @@ + loglevel 256 + + database bdb +-suffix "dc=mageia,dc=org" ++suffix "<%= dc_suffix %>" + directory /var/lib/ldap +-rootdn "cn=manager,dc=mageia,dc=org" ++rootdn "cn=manager,<%= dc_suffix %>" + + checkpoint 256 5 + # 32Mbytes, can hold about 10k posixAccount entries +@@ -81,7 +83,7 @@ + syncprov-sessionlog 100 + + overlay ppolicy +-ppolicy_default "cn=default,ou=Password Policies,dc=mageia,dc=org" ++ppolicy_default "cn=default,ou=Password Policies,<%= dc_suffix %>" + ppolicy_hash_cleartext yes + ppolicy_use_lockout yes + +@@ -94,15 +96,15 @@ + #refint_nothing "uid=LDAP Admin,ou=System Accounts,dc=example,dc=com" + + authz-regexp "gidNumber=0\\\+uidNumber=0,cn=peercred,cn=external,cn=auth" +- "uid=Account Admin,ou=System Accounts,dc=mageia,dc=org" +-authz-regexp ^uid=([^,]+),cn=[^,]+,cn=auth$ uid=$1,ou=People,dc=mageia,dc=org ++ "uid=Account Admin,ou=System Accounts,<%= dc_suffix %>" ++authz-regexp ^uid=([^,]+),cn=[^,]+,cn=auth$ uid=$1,ou=People,<%= dc_suffix %> + + include /etc/openldap/mandriva-dit-access.conf + + + database monitor + access to dn.subtree="cn=Monitor" +- by group.exact="cn=LDAP Monitors,ou=System Groups,dc=mageia,dc=org" read +- by group.exact="cn=LDAP Admins,ou=System Groups,dc=mageia,dc=org" read ++ by group.exact="cn=LDAP Monitors,ou=System Groups,<%= dc_suffix %>" read ++ by group.exact="cn=LDAP Admins,ou=System Groups,<%= dc_suffix %>" read + by * none + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/3dd92efc/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/3dd92efc/attachment.html new file mode 100644 index 000000000..67986c42a --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/3dd92efc/attachment.html @@ -0,0 +1,130 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[211] - replace hardcoded domain by a variable, to ease reuse of the module </title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>211</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-09 03:21:57 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- replace hardcoded domain by a variable, to ease reuse of the module </pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesopenldaptemplatesslapdconf">puppet/modules/openldap/templates/slapd.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesopenldaptemplatesslapdconf">Modified: puppet/modules/openldap/templates/slapd.conf</a> +=================================================================== +--- puppet/modules/openldap/templates/slapd.conf 2010-11-08 23:18:50 UTC (rev 210) ++++ puppet/modules/openldap/templates/slapd.conf 2010-11-09 02:21:57 UTC (rev 211) +@@ -1,3 +1,9 @@ ++<% ++dc_suffix = 'dc=' + domain.gsub('.',',dc=') ++path_module_directory = "/usr/lib" + ( architecture == "x86_64" ? '64' : '') + "/openldap" ++ ++%> ++ + # slapd.conf template + include /usr/share/openldap/schema/core.schema + include /usr/share/openldap/schema/cosine.schema +@@ -26,10 +32,6 @@ + pidfile /var/run/ldap/slapd.pid + argsfile /var/run/ldap/slapd.args + +-<% +-path_module_directory = "/usr/lib" + ( architecture == "x86_64" ? '64' : '') + "/openldap" +-%> +- + modulepath <%= path_module_directory %> + moduleload back_monitor.la + moduleload syncprov.la +@@ -51,9 +53,9 @@ + loglevel 256 + + database bdb +-suffix "dc=mageia,dc=org" ++suffix "<%= dc_suffix %>" + directory /var/lib/ldap +-rootdn "cn=manager,dc=mageia,dc=org" ++rootdn "cn=manager,<%= dc_suffix %>" + + checkpoint 256 5 + # 32Mbytes, can hold about 10k posixAccount entries +@@ -81,7 +83,7 @@ + syncprov-sessionlog 100 + + overlay ppolicy +-ppolicy_default "cn=default,ou=Password Policies,dc=mageia,dc=org" ++ppolicy_default "cn=default,ou=Password Policies,<%= dc_suffix %>" + ppolicy_hash_cleartext yes + ppolicy_use_lockout yes + +@@ -94,15 +96,15 @@ + #refint_nothing "uid=LDAP Admin,ou=System Accounts,dc=example,dc=com" + + authz-regexp "gidNumber=0\\\+uidNumber=0,cn=peercred,cn=external,cn=auth" +- "uid=Account Admin,ou=System Accounts,dc=mageia,dc=org" +-authz-regexp ^uid=([^,]+),cn=[^,]+,cn=auth$ uid=$1,ou=People,dc=mageia,dc=org ++ "uid=Account Admin,ou=System Accounts,<%= dc_suffix %>" ++authz-regexp ^uid=([^,]+),cn=[^,]+,cn=auth$ uid=$1,ou=People,<%= dc_suffix %> + + include /etc/openldap/mandriva-dit-access.conf + + + database monitor + access to dn.subtree="cn=Monitor" +- by group.exact="cn=LDAP Monitors,ou=System Groups,dc=mageia,dc=org" read +- by group.exact="cn=LDAP Admins,ou=System Groups,dc=mageia,dc=org" read ++ by group.exact="cn=LDAP Monitors,ou=System Groups,<%= dc_suffix %>" read ++ by group.exact="cn=LDAP Admins,ou=System Groups,<%= dc_suffix %>" read + by * none + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/40056ff2/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/40056ff2/attachment-0001.html new file mode 100644 index 000000000..c81b11783 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/40056ff2/attachment-0001.html @@ -0,0 +1,80 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[210] Add sympa to pgsql</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>210</dd> +<dt>Author</dt> <dd>dmorgan</dd> +<dt>Date</dt> <dd>2010-11-09 00:18:50 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>Add sympa to pgsql</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespostgresqltemplatespg_hbaconf">puppet/modules/postgresql/templates/pg_hba.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespostgresqltemplatespg_hbaconf">Modified: puppet/modules/postgresql/templates/pg_hba.conf</a> +=================================================================== +--- puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 23:01:23 UTC (rev 209) ++++ puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 23:18:50 UTC (rev 210) +@@ -100,6 +100,11 @@ + hostssl bugs bugs 212.85.158.146/32 md5 + hostssl bugs bugs 2a02:2178:2:7::2/128 md5 + ++host sympa sympa 127.0.0.1/32 md5 ++host sympa sympa ::1/128 md5 ++hostssl sympa sympa 212.85.158.146/32 md5 ++hostssl sympa sympa 2a02:2178:2:7::2/128 md5 ++ + # "local" is for Unix domain socket connections only + local all all ident map=local + # IPv4 local connections: + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/40056ff2/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/40056ff2/attachment.html new file mode 100644 index 000000000..c81b11783 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/40056ff2/attachment.html @@ -0,0 +1,80 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[210] Add sympa to pgsql</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>210</dd> +<dt>Author</dt> <dd>dmorgan</dd> +<dt>Date</dt> <dd>2010-11-09 00:18:50 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>Add sympa to pgsql</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespostgresqltemplatespg_hbaconf">puppet/modules/postgresql/templates/pg_hba.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespostgresqltemplatespg_hbaconf">Modified: puppet/modules/postgresql/templates/pg_hba.conf</a> +=================================================================== +--- puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 23:01:23 UTC (rev 209) ++++ puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 23:18:50 UTC (rev 210) +@@ -100,6 +100,11 @@ + hostssl bugs bugs 212.85.158.146/32 md5 + hostssl bugs bugs 2a02:2178:2:7::2/128 md5 + ++host sympa sympa 127.0.0.1/32 md5 ++host sympa sympa ::1/128 md5 ++hostssl sympa sympa 212.85.158.146/32 md5 ++hostssl sympa sympa 2a02:2178:2:7::2/128 md5 ++ + # "local" is for Unix domain socket connections only + local all all ident map=local + # IPv4 local connections: + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/431b95e6/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/431b95e6/attachment-0001.html new file mode 100644 index 000000000..cfffeaf1d --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/431b95e6/attachment-0001.html @@ -0,0 +1,172 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[212] Close more anon access, and open up read access to some inetOrgPerson attrs to users</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>212</dd> +<dt>Author</dt> <dd>buchan</dd> +<dt>Date</dt> <dd>2010-11-09 15:25:10 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>Close more anon access, and open up read access to some inetOrgPerson attrs to users</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesopenldaptemplatesmandrivaditaccessconf">puppet/modules/openldap/templates/mandriva-dit-access.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesopenldaptemplatesmandrivaditaccessconf">Modified: puppet/modules/openldap/templates/mandriva-dit-access.conf</a> +=================================================================== +--- puppet/modules/openldap/templates/mandriva-dit-access.conf 2010-11-09 02:21:57 UTC (rev 211) ++++ puppet/modules/openldap/templates/mandriva-dit-access.conf 2010-11-09 14:25:10 UTC (rev 212) +@@ -33,7 +33,7 @@ + attrs=shadowLastChange + by self write + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + access to dn.subtree="dc=mageia,dc=org" + attrs=userPassword + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +@@ -53,7 +53,7 @@ + # password policies + access to dn.subtree="ou=Password Policies,dc=mageia,dc=org" + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # samba password attributes + # by self not strictly necessary, because samba uses its own admin user to +@@ -77,16 +77,18 @@ + access to dn.subtree="dc=mageia,dc=org" + attrs=pwdReset,pwdAccountLockedTime + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by self read + + # group owner can add/remove/edit members to groups + access to dn.regex="^cn=[^,]+,ou=(System Groups|Group),dc=mageia,dc=org$" + attrs=member + by dnattr=owner write ++ by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write + by users +sx + + access to dn.regex="^cn=[^,]+,ou=(System Groups|Group),dc=mageia,dc=org$" + attrs=cn,description,objectClass,gidNumber ++ by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write + by users read + + # registration - allow registrar group to create basic unprivileged accounts +@@ -106,7 +108,7 @@ + access to dn.subtree="ou=People,dc=mageia,dc=org" + attrs=carLicense,homePhone,homePostalAddress,mobile,pager,telephoneNumber,mail,preferredLanguage + by self write +- by users +sx ++ by users read + + # create new accounts + access to dn.regex="^([^,]+,)?ou=(People|Group|Hosts),dc=mageia,dc=org$" +@@ -122,21 +124,21 @@ + access to dn.regex="^(sambaDomainName=[^,]+,)?dc=mageia,dc=org$" + attrs=children,entry,@sambaDomain,@sambaUnixIdPool + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # samba ID mapping + access to dn.regex="^(sambaSID=[^,]+,)?ou=Idmap,dc=mageia,dc=org$" + attrs=children,entry,@sambaIdmapEntry + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write + by group.exact="cn=IDMAP Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # global address book + # XXX - which class(es) to use? + access to dn.regex="^(.*,)?ou=Address Book,dc=mageia,dc=org" + attrs=children,entry,@inetOrgPerson,@evolutionPerson,@evolutionPersonList + by group.exact="cn=Address Book Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # dhcp entries + # XXX - open up read access to anybody? +@@ -150,13 +152,13 @@ + access to dn.regex="^([^,]+,)?ou=sudoers,dc=mageia,dc=org$" + attrs=children,entry,@sudoRole + by group.exact="cn=Sudo Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # dns + access to dn="ou=dns,dc=mageia,dc=org" + attrs=entry,@extensibleObject + by group.exact="cn=DNS Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + access to dn.sub="ou=dns,dc=mageia,dc=org" + attrs=children,entry,@dNSZone + by group.exact="cn=DNS Admins,ou=System Groups,dc=mageia,dc=org" write +@@ -169,7 +171,7 @@ + access to dn.one="ou=People,dc=mageia,dc=org" + attrs=@inetLocalMailRecipient,mail + by group.exact="cn=MTA Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # KDE Configuration + access to dn.sub="ou=KDEConfig,dc=mageia,dc=org" +@@ -178,5 +180,5 @@ + + # last one + access to dn.subtree="dc=mageia,dc=org" attrs=entry,uid,cn +- by * read ++ by users read + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/431b95e6/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/431b95e6/attachment.html new file mode 100644 index 000000000..cfffeaf1d --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/431b95e6/attachment.html @@ -0,0 +1,172 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[212] Close more anon access, and open up read access to some inetOrgPerson attrs to users</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>212</dd> +<dt>Author</dt> <dd>buchan</dd> +<dt>Date</dt> <dd>2010-11-09 15:25:10 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>Close more anon access, and open up read access to some inetOrgPerson attrs to users</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesopenldaptemplatesmandrivaditaccessconf">puppet/modules/openldap/templates/mandriva-dit-access.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesopenldaptemplatesmandrivaditaccessconf">Modified: puppet/modules/openldap/templates/mandriva-dit-access.conf</a> +=================================================================== +--- puppet/modules/openldap/templates/mandriva-dit-access.conf 2010-11-09 02:21:57 UTC (rev 211) ++++ puppet/modules/openldap/templates/mandriva-dit-access.conf 2010-11-09 14:25:10 UTC (rev 212) +@@ -33,7 +33,7 @@ + attrs=shadowLastChange + by self write + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + access to dn.subtree="dc=mageia,dc=org" + attrs=userPassword + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +@@ -53,7 +53,7 @@ + # password policies + access to dn.subtree="ou=Password Policies,dc=mageia,dc=org" + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # samba password attributes + # by self not strictly necessary, because samba uses its own admin user to +@@ -77,16 +77,18 @@ + access to dn.subtree="dc=mageia,dc=org" + attrs=pwdReset,pwdAccountLockedTime + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by self read + + # group owner can add/remove/edit members to groups + access to dn.regex="^cn=[^,]+,ou=(System Groups|Group),dc=mageia,dc=org$" + attrs=member + by dnattr=owner write ++ by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write + by users +sx + + access to dn.regex="^cn=[^,]+,ou=(System Groups|Group),dc=mageia,dc=org$" + attrs=cn,description,objectClass,gidNumber ++ by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write + by users read + + # registration - allow registrar group to create basic unprivileged accounts +@@ -106,7 +108,7 @@ + access to dn.subtree="ou=People,dc=mageia,dc=org" + attrs=carLicense,homePhone,homePostalAddress,mobile,pager,telephoneNumber,mail,preferredLanguage + by self write +- by users +sx ++ by users read + + # create new accounts + access to dn.regex="^([^,]+,)?ou=(People|Group|Hosts),dc=mageia,dc=org$" +@@ -122,21 +124,21 @@ + access to dn.regex="^(sambaDomainName=[^,]+,)?dc=mageia,dc=org$" + attrs=children,entry,@sambaDomain,@sambaUnixIdPool + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # samba ID mapping + access to dn.regex="^(sambaSID=[^,]+,)?ou=Idmap,dc=mageia,dc=org$" + attrs=children,entry,@sambaIdmapEntry + by group.exact="cn=Account Admins,ou=System Groups,dc=mageia,dc=org" write + by group.exact="cn=IDMAP Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # global address book + # XXX - which class(es) to use? + access to dn.regex="^(.*,)?ou=Address Book,dc=mageia,dc=org" + attrs=children,entry,@inetOrgPerson,@evolutionPerson,@evolutionPersonList + by group.exact="cn=Address Book Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # dhcp entries + # XXX - open up read access to anybody? +@@ -150,13 +152,13 @@ + access to dn.regex="^([^,]+,)?ou=sudoers,dc=mageia,dc=org$" + attrs=children,entry,@sudoRole + by group.exact="cn=Sudo Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # dns + access to dn="ou=dns,dc=mageia,dc=org" + attrs=entry,@extensibleObject + by group.exact="cn=DNS Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + access to dn.sub="ou=dns,dc=mageia,dc=org" + attrs=children,entry,@dNSZone + by group.exact="cn=DNS Admins,ou=System Groups,dc=mageia,dc=org" write +@@ -169,7 +171,7 @@ + access to dn.one="ou=People,dc=mageia,dc=org" + attrs=@inetLocalMailRecipient,mail + by group.exact="cn=MTA Admins,ou=System Groups,dc=mageia,dc=org" write +- by * read ++ by users read + + # KDE Configuration + access to dn.sub="ou=KDEConfig,dc=mageia,dc=org" +@@ -178,5 +180,5 @@ + + # last one + access to dn.subtree="dc=mageia,dc=org" attrs=entry,uid,cn +- by * read ++ by users read + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/572273c3/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/572273c3/attachment-0001.html new file mode 100644 index 000000000..e83f29f67 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/572273c3/attachment-0001.html @@ -0,0 +1,156 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[213] - rename iurt to buildsystem</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>213</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-09 16:01:12 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- rename iurt to buildsystem</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmanifestsnodespp">puppet/manifests/nodes.pp</a></li> +<li><a href="#puppetmodulesbuildsystemmanifestsinitpp">puppet/modules/buildsystem/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li>puppet/modules/buildsystem/</li> +</ul> + +<h3>Removed Paths</h3> +<ul> +<li>puppet/modules/iurt/</li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmanifestsnodespp">Modified: puppet/manifests/nodes.pp</a> +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-09 14:25:10 UTC (rev 212) ++++ puppet/manifests/nodes.pp 2010-11-09 15:01:12 UTC (rev 213) +@@ -60,7 +60,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- #include iurt ++ #include buildsystem::buildnode + timezone::timezone { "Europe/Paris": } + } + +@@ -68,7 +68,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- include iurt ++ include buildsystem::buildnode + timezone::timezone { "Europe/Paris": } + } + + +<a id="puppetmodulesbuildsystemmanifestsinitpp">Modified: puppet/modules/buildsystem/manifests/init.pp</a> +=================================================================== +--- puppet/modules/iurt/manifests/init.pp 2010-11-09 14:25:10 UTC (rev 212) ++++ puppet/modules/buildsystem/manifests/init.pp 2010-11-09 15:01:12 UTC (rev 213) +@@ -1,20 +1,38 @@ +-class iurt { ++class buildsystem { + +- # build node common settings +- # we could have the following skip list to use less space: +- # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/' +- $package_list = ['task-bs-cluster-chroot', 'iurt'] +- package { $package_list: +- ensure => installed; ++ class buildnode { ++ include iurt + } + +- file { '/home/buildbot/.iurt.cauldron.conf': +- ensure => present, +- owner => buildbot, +- group => buildbot, +- mode => 644, +- content => template("iurt/iurt.cauldron.conf") ++ class iurt { ++ ++ $home_dir = "/home/buildbot/" ++ $build_login = "buildbot" ++ # build node common settings ++ # we could have the following skip list to use less space: ++ # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/' ++ $package_list = ['task-bs-cluster-chroot', 'iurt'] ++ package { $package_list: ++ ensure => installed; ++ } ++ ++ file { "$home_dir/.iurt.cauldron.conf": ++ ensure => present, ++ owner => $build_login, ++ group => $build_login, ++ mode => 644, ++ content => template("iurt/iurt.cauldron.conf") ++ } ++ ++ group {"$build_login": ++ ensure => present, ++ } ++ ++ user {"$build_login": ++ ensure => present, ++ comment => "System user use to run build bots" ++ managehome => true, ++ shell => "/bin/bash", ++ } + } +- + } +- + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/572273c3/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/572273c3/attachment.html new file mode 100644 index 000000000..e83f29f67 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/572273c3/attachment.html @@ -0,0 +1,156 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[213] - rename iurt to buildsystem</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>213</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-09 16:01:12 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- rename iurt to buildsystem</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmanifestsnodespp">puppet/manifests/nodes.pp</a></li> +<li><a href="#puppetmodulesbuildsystemmanifestsinitpp">puppet/modules/buildsystem/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li>puppet/modules/buildsystem/</li> +</ul> + +<h3>Removed Paths</h3> +<ul> +<li>puppet/modules/iurt/</li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmanifestsnodespp">Modified: puppet/manifests/nodes.pp</a> +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-09 14:25:10 UTC (rev 212) ++++ puppet/manifests/nodes.pp 2010-11-09 15:01:12 UTC (rev 213) +@@ -60,7 +60,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- #include iurt ++ #include buildsystem::buildnode + timezone::timezone { "Europe/Paris": } + } + +@@ -68,7 +68,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- include iurt ++ include buildsystem::buildnode + timezone::timezone { "Europe/Paris": } + } + + +<a id="puppetmodulesbuildsystemmanifestsinitpp">Modified: puppet/modules/buildsystem/manifests/init.pp</a> +=================================================================== +--- puppet/modules/iurt/manifests/init.pp 2010-11-09 14:25:10 UTC (rev 212) ++++ puppet/modules/buildsystem/manifests/init.pp 2010-11-09 15:01:12 UTC (rev 213) +@@ -1,20 +1,38 @@ +-class iurt { ++class buildsystem { + +- # build node common settings +- # we could have the following skip list to use less space: +- # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/' +- $package_list = ['task-bs-cluster-chroot', 'iurt'] +- package { $package_list: +- ensure => installed; ++ class buildnode { ++ include iurt + } + +- file { '/home/buildbot/.iurt.cauldron.conf': +- ensure => present, +- owner => buildbot, +- group => buildbot, +- mode => 644, +- content => template("iurt/iurt.cauldron.conf") ++ class iurt { ++ ++ $home_dir = "/home/buildbot/" ++ $build_login = "buildbot" ++ # build node common settings ++ # we could have the following skip list to use less space: ++ # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/' ++ $package_list = ['task-bs-cluster-chroot', 'iurt'] ++ package { $package_list: ++ ensure => installed; ++ } ++ ++ file { "$home_dir/.iurt.cauldron.conf": ++ ensure => present, ++ owner => $build_login, ++ group => $build_login, ++ mode => 644, ++ content => template("iurt/iurt.cauldron.conf") ++ } ++ ++ group {"$build_login": ++ ensure => present, ++ } ++ ++ user {"$build_login": ++ ensure => present, ++ comment => "System user use to run build bots" ++ managehome => true, ++ shell => "/bin/bash", ++ } + } +- + } +- + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/81cac381/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/81cac381/attachment-0001.html new file mode 100644 index 000000000..617fda105 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/81cac381/attachment-0001.html @@ -0,0 +1,103 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[216] add sudoers rule for iurt</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>216</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-09 23:57:33 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add sudoers rule for iurt</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesbuildsystemmanifestsinitpp">puppet/modules/buildsystem/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li><a href="#puppetmodulesbuildsystemtemplatessudoersiurt">puppet/modules/buildsystem/templates/sudoers.iurt</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesbuildsystemmanifestsinitpp">Modified: puppet/modules/buildsystem/manifests/init.pp</a> +=================================================================== +--- puppet/modules/buildsystem/manifests/init.pp 2010-11-09 22:48:04 UTC (rev 215) ++++ puppet/modules/buildsystem/manifests/init.pp 2010-11-09 22:57:33 UTC (rev 216) +@@ -5,6 +5,7 @@ + } + + class iurt { ++ include sudo + + $home_dir = "/home/buildbot/" + $build_login = "buildbot" +@@ -24,6 +25,14 @@ + content => template("iurt/iurt.cauldron.conf") + } + ++ file { "/etc/sudoers.d/iurt": ++ ensure => present, ++ owner => root, ++ group => root, ++ mode => 600, ++ content => template("iurt/sudoers.iurt") ++ } ++ + group {"$build_login": + ensure => present, + } + +<a id="puppetmodulesbuildsystemtemplatessudoersiurt">Added: puppet/modules/buildsystem/templates/sudoers.iurt</a> +=================================================================== +--- puppet/modules/buildsystem/templates/sudoers.iurt (rev 0) ++++ puppet/modules/buildsystem/templates/sudoers.iurt 2010-11-09 22:57:33 UTC (rev 216) +@@ -0,0 +1 @@ ++<%= build_login %> ALL = NOPASSWD: /usr/sbin/iurt_root_command + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/81cac381/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/81cac381/attachment.html new file mode 100644 index 000000000..617fda105 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/81cac381/attachment.html @@ -0,0 +1,103 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[216] add sudoers rule for iurt</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>216</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-09 23:57:33 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add sudoers rule for iurt</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesbuildsystemmanifestsinitpp">puppet/modules/buildsystem/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li><a href="#puppetmodulesbuildsystemtemplatessudoersiurt">puppet/modules/buildsystem/templates/sudoers.iurt</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesbuildsystemmanifestsinitpp">Modified: puppet/modules/buildsystem/manifests/init.pp</a> +=================================================================== +--- puppet/modules/buildsystem/manifests/init.pp 2010-11-09 22:48:04 UTC (rev 215) ++++ puppet/modules/buildsystem/manifests/init.pp 2010-11-09 22:57:33 UTC (rev 216) +@@ -5,6 +5,7 @@ + } + + class iurt { ++ include sudo + + $home_dir = "/home/buildbot/" + $build_login = "buildbot" +@@ -24,6 +25,14 @@ + content => template("iurt/iurt.cauldron.conf") + } + ++ file { "/etc/sudoers.d/iurt": ++ ensure => present, ++ owner => root, ++ group => root, ++ mode => 600, ++ content => template("iurt/sudoers.iurt") ++ } ++ + group {"$build_login": + ensure => present, + } + +<a id="puppetmodulesbuildsystemtemplatessudoersiurt">Added: puppet/modules/buildsystem/templates/sudoers.iurt</a> +=================================================================== +--- puppet/modules/buildsystem/templates/sudoers.iurt (rev 0) ++++ puppet/modules/buildsystem/templates/sudoers.iurt 2010-11-09 22:57:33 UTC (rev 216) +@@ -0,0 +1 @@ ++<%= build_login %> ALL = NOPASSWD: /usr/sbin/iurt_root_command + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/a3b74a26/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/a3b74a26/attachment-0001.html new file mode 100644 index 000000000..127c56f45 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/a3b74a26/attachment-0001.html @@ -0,0 +1,79 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[214] Remove the secret key from the file ( even if this is not the one used )</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>214</dd> +<dt>Author</dt> <dd>dmorgan</dd> +<dt>Date</dt> <dd>2010-11-09 21:19:13 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>Remove the secret key from the file ( even if this is not the one used ) + A new one will be recreated with checksetup.pl when needed.</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesbugzillatemplateslocalconfig">puppet/modules/bugzilla/templates/localconfig</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesbugzillatemplateslocalconfig">Modified: puppet/modules/bugzilla/templates/localconfig</a> +=================================================================== +--- puppet/modules/bugzilla/templates/localconfig 2010-11-09 15:01:12 UTC (rev 213) ++++ puppet/modules/bugzilla/templates/localconfig 2010-11-09 20:19:13 UTC (rev 214) +@@ -102,9 +102,3 @@ + # Please specify the directory name only; do not use trailing slash. + $diffpath = '/usr/bin'; + +-# This secret key is used by your installation for the creation and +-# validation of encrypted tokens to prevent unsolicited changes, +-# such as bug changes. A random string is generated by default. +-# It's very important that this key is kept secret. It also must be +-# very long. +-$site_wide_secret = 'FLDtMWoTaBMifoR5CXo8yAFkeHNzCDra8BwWv6HDgGIvRLVMahTgl6wmD43RaY2pwrrY2xcTUkEX0sGOw7ZPnjwbqx56DtNqHMNDnkS43wywBMfhw0w798zFqAOMYySyPPdEIGg9ZJ1KOtHPk4jW6WVvaHpLjZQEmJYqygVmUaxsSwxdWCQcRPKmQtZqGjvWCwuiTtGOKUhEBbpCIIX20Yw5N50tNq95VzYC08Qw4FGp0stDsx82wNNxdnK1m9KZ'; + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/a3b74a26/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/a3b74a26/attachment.html new file mode 100644 index 000000000..127c56f45 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/a3b74a26/attachment.html @@ -0,0 +1,79 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[214] Remove the secret key from the file ( even if this is not the one used )</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>214</dd> +<dt>Author</dt> <dd>dmorgan</dd> +<dt>Date</dt> <dd>2010-11-09 21:19:13 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>Remove the secret key from the file ( even if this is not the one used ) + A new one will be recreated with checksetup.pl when needed.</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesbugzillatemplateslocalconfig">puppet/modules/bugzilla/templates/localconfig</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesbugzillatemplateslocalconfig">Modified: puppet/modules/bugzilla/templates/localconfig</a> +=================================================================== +--- puppet/modules/bugzilla/templates/localconfig 2010-11-09 15:01:12 UTC (rev 213) ++++ puppet/modules/bugzilla/templates/localconfig 2010-11-09 20:19:13 UTC (rev 214) +@@ -102,9 +102,3 @@ + # Please specify the directory name only; do not use trailing slash. + $diffpath = '/usr/bin'; + +-# This secret key is used by your installation for the creation and +-# validation of encrypted tokens to prevent unsolicited changes, +-# such as bug changes. A random string is generated by default. +-# It's very important that this key is kept secret. It also must be +-# very long. +-$site_wide_secret = 'FLDtMWoTaBMifoR5CXo8yAFkeHNzCDra8BwWv6HDgGIvRLVMahTgl6wmD43RaY2pwrrY2xcTUkEX0sGOw7ZPnjwbqx56DtNqHMNDnkS43wywBMfhw0w798zFqAOMYySyPPdEIGg9ZJ1KOtHPk4jW6WVvaHpLjZQEmJYqygVmUaxsSwxdWCQcRPKmQtZqGjvWCwuiTtGOKUhEBbpCIIX20Yw5N50tNq95VzYC08Qw4FGp0stDsx82wNNxdnK1m9KZ'; + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/ac9d9ba8/attachment-0001.asc b/zarb-ml/mageia-sysadm/attachments/20101109/ac9d9ba8/attachment-0001.asc new file mode 100644 index 000000000..79b9bffe6 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/ac9d9ba8/attachment-0001.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkzYmMsACgkQk29cDOWzfVDfLwCg5E6YhV1xtvLl0Y+YB4wC+0Wv +XtIAn1AycaXxg0Bz+UDVh28ClCctO8uh +=hctM +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/ac9d9ba8/attachment.asc b/zarb-ml/mageia-sysadm/attachments/20101109/ac9d9ba8/attachment.asc new file mode 100644 index 000000000..79b9bffe6 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/ac9d9ba8/attachment.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkzYmMsACgkQk29cDOWzfVDfLwCg5E6YhV1xtvLl0Y+YB4wC+0Wv +XtIAn1AycaXxg0Bz+UDVh28ClCctO8uh +=hctM +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/e302d387/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/e302d387/attachment-0001.html new file mode 100644 index 000000000..0efc6aad4 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/e302d387/attachment-0001.html @@ -0,0 +1,95 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[209] - fix mask for database declaration</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>209</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-09 00:01:23 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix mask for database declaration</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespostgresqltemplatespg_hbaconf">puppet/modules/postgresql/templates/pg_hba.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespostgresqltemplatespg_hbaconf">Modified: puppet/modules/postgresql/templates/pg_hba.conf</a> +=================================================================== +--- puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 13:30:00 UTC (rev 208) ++++ puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 23:01:23 UTC (rev 209) +@@ -81,22 +81,22 @@ + # Nanar: + # This bypass global config for specific user/base + host epoll epoll 127.0.0.1/32 md5 +-host epoll epoll ::1 md5 ++host epoll epoll ::1/128 md5 + hostssl epoll epoll 212.85.158.146/32 md5 + hostssl epoll epoll 2a02:2178:2:7::2/128 md5 + + host mirrors mirrors 127.0.0.1/32 md5 +-host mirrors mirrors ::1 md5 ++host mirrors mirrors ::1/128 md5 + hostssl mirrors mirrors 212.85.158.146/32 md5 + hostssl mirrors mirrors 2a02:2178:2:7::2/128 md5 + + host transifex transifex 127.0.0.1/32 md5 +-host transifex transifex ::1 md5 ++host transifex transifex ::1/128 md5 + hostssl transifex transifex 212.85.158.146/32 md5 + hostssl transifex transifex 2a02:2178:2:7::2/128 md5 + + host bugs bugs 127.0.0.1/32 md5 +-host bugs bugs ::1 md5 ++host bugs bugs ::1/128 md5 + hostssl bugs bugs 212.85.158.146/32 md5 + hostssl bugs bugs 2a02:2178:2:7::2/128 md5 + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/e302d387/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/e302d387/attachment.html new file mode 100644 index 000000000..0efc6aad4 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/e302d387/attachment.html @@ -0,0 +1,95 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[209] - fix mask for database declaration</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>209</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-09 00:01:23 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix mask for database declaration</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespostgresqltemplatespg_hbaconf">puppet/modules/postgresql/templates/pg_hba.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespostgresqltemplatespg_hbaconf">Modified: puppet/modules/postgresql/templates/pg_hba.conf</a> +=================================================================== +--- puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 13:30:00 UTC (rev 208) ++++ puppet/modules/postgresql/templates/pg_hba.conf 2010-11-08 23:01:23 UTC (rev 209) +@@ -81,22 +81,22 @@ + # Nanar: + # This bypass global config for specific user/base + host epoll epoll 127.0.0.1/32 md5 +-host epoll epoll ::1 md5 ++host epoll epoll ::1/128 md5 + hostssl epoll epoll 212.85.158.146/32 md5 + hostssl epoll epoll 2a02:2178:2:7::2/128 md5 + + host mirrors mirrors 127.0.0.1/32 md5 +-host mirrors mirrors ::1 md5 ++host mirrors mirrors ::1/128 md5 + hostssl mirrors mirrors 212.85.158.146/32 md5 + hostssl mirrors mirrors 2a02:2178:2:7::2/128 md5 + + host transifex transifex 127.0.0.1/32 md5 +-host transifex transifex ::1 md5 ++host transifex transifex ::1/128 md5 + hostssl transifex transifex 212.85.158.146/32 md5 + hostssl transifex transifex 2a02:2178:2:7::2/128 md5 + + host bugs bugs 127.0.0.1/32 md5 +-host bugs bugs ::1 md5 ++host bugs bugs ::1/128 md5 + hostssl bugs bugs 212.85.158.146/32 md5 + hostssl bugs bugs 2a02:2178:2:7::2/128 md5 + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/e544f6fc/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101109/e544f6fc/attachment-0001.html new file mode 100644 index 000000000..9095106a6 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/e544f6fc/attachment-0001.html @@ -0,0 +1,100 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[215] add sudo module</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>215</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-09 23:48:04 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add sudo module</pre> + +<h3>Added Paths</h3> +<ul> +<li>puppet/modules/sudo/</li> +<li>puppet/modules/sudo/manifests/</li> +<li><a href="#puppetmodulessudomanifestsinitpp">puppet/modules/sudo/manifests/init.pp</a></li> +<li>puppet/modules/sudo/templates/</li> +<li><a href="#puppetmodulessudotemplatessudoers">puppet/modules/sudo/templates/sudoers</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulessudomanifestsinitpp">Added: puppet/modules/sudo/manifests/init.pp</a> +=================================================================== +--- puppet/modules/sudo/manifests/init.pp (rev 0) ++++ puppet/modules/sudo/manifests/init.pp 2010-11-09 22:48:04 UTC (rev 215) +@@ -0,0 +1,20 @@ ++class sudo { ++ package { sudo: ++ ensure => installed; ++ } ++ ++ file { "/etc/sudoers.d": ++ ensure => directory, ++ mode => 700, ++ owner => root, ++ group => root, ++ } ++ ++ file { "/etc/sudoers": ++ ensure => present, ++ owner => root, ++ group => root, ++ mode => 600, ++ content => template("sudo/sudoers") ++ } ++} + +<a id="puppetmodulessudotemplatessudoers">Added: puppet/modules/sudo/templates/sudoers</a> +=================================================================== +--- puppet/modules/sudo/templates/sudoers (rev 0) ++++ puppet/modules/sudo/templates/sudoers 2010-11-09 22:48:04 UTC (rev 215) +@@ -0,0 +1 @@ ++#includedir /etc/sudoers.d + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101109/e544f6fc/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101109/e544f6fc/attachment.html new file mode 100644 index 000000000..9095106a6 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101109/e544f6fc/attachment.html @@ -0,0 +1,100 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /> +<title>[215] add sudo module</title> +</head> +<body> + +<style type="text/css"><!-- +#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } +#msg dl.meta dt { float: left; width: 6em; font-weight: bold; } +#msg dt:after { content:':';} +#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } +#msg dl a { font-weight: bold} +#msg dl a:link { color:#fc3; } +#msg dl a:active { color:#ff0; } +#msg dl a:visited { color:#cc6; } +h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } +#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; } +#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; } +#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; } +#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; } +#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; } +#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } +#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; } +#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; } +#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; } +#logmsg pre { background: #eee; padding: 1em; } +#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;} +#logmsg dl { margin: 0; } +#logmsg dt { font-weight: bold; } +#logmsg dd { margin: 0; padding: 0 0 0.5em 0; } +#logmsg dd:before { content:'\00bb';} +#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; } +#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; } +#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; } +#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; } +#logmsg table th.Corner { text-align: left; } +#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; } +#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } +#patch { width: 100%; } +--></style> +<div id="msg"> +<dl class="meta"> +<dt>Revision</dt> <dd>215</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-09 23:48:04 +0100 (Tue, 09 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add sudo module</pre> + +<h3>Added Paths</h3> +<ul> +<li>puppet/modules/sudo/</li> +<li>puppet/modules/sudo/manifests/</li> +<li><a href="#puppetmodulessudomanifestsinitpp">puppet/modules/sudo/manifests/init.pp</a></li> +<li>puppet/modules/sudo/templates/</li> +<li><a href="#puppetmodulessudotemplatessudoers">puppet/modules/sudo/templates/sudoers</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulessudomanifestsinitpp">Added: puppet/modules/sudo/manifests/init.pp</a> +=================================================================== +--- puppet/modules/sudo/manifests/init.pp (rev 0) ++++ puppet/modules/sudo/manifests/init.pp 2010-11-09 22:48:04 UTC (rev 215) +@@ -0,0 +1,20 @@ ++class sudo { ++ package { sudo: ++ ensure => installed; ++ } ++ ++ file { "/etc/sudoers.d": ++ ensure => directory, ++ mode => 700, ++ owner => root, ++ group => root, ++ } ++ ++ file { "/etc/sudoers": ++ ensure => present, ++ owner => root, ++ group => root, ++ mode => 600, ++ content => template("sudo/sudoers") ++ } ++} + +<a id="puppetmodulessudotemplatessudoers">Added: puppet/modules/sudo/templates/sudoers</a> +=================================================================== +--- puppet/modules/sudo/templates/sudoers (rev 0) ++++ puppet/modules/sudo/templates/sudoers 2010-11-09 22:48:04 UTC (rev 215) +@@ -0,0 +1 @@ ++#includedir /etc/sudoers.d + +</pre></div> + +</body> +</html>
\ No newline at end of file |