diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/attachments/20101108')
46 files changed, 5004 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/017de46d/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/017de46d/attachment-0001.html new file mode 100644 index 000000000..453275b5f --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/017de46d/attachment-0001.html @@ -0,0 +1,94 @@ +<!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>[194] - add a hook to serve static file with apache directly</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>194</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:18:44 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- add a hook to serve static file with apache directly</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +<li><a href="#puppetmodulesapachetemplatesvhost_catalyst_appconf">puppet/modules/apache/templates/vhost_catalyst_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-07 23:36:49 UTC (rev 193) ++++ puppet/modules/apache/manifests/init.pp 2010-11-08 00:18:44 UTC (rev 194) +@@ -82,7 +82,7 @@ + } + } + +- define vhost_catalyst_app($script, $process = 4, $use_ssl = false) { ++ define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false) { + + include apache::mod_fastcgi + + +<a id="puppetmodulesapachetemplatesvhost_catalyst_appconf">Modified: puppet/modules/apache/templates/vhost_catalyst_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-07 23:36:49 UTC (rev 193) ++++ puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:18:44 UTC (rev 194) +@@ -2,7 +2,9 @@ + ServerName <%= name %> + # Serve static content directly + DocumentRoot /dev/null +- ++<% if location then %> ++ Alias /static <%= location %>/root/static ++<% endif %> + Alias / <%= script %>/ + FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30 + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/017de46d/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/017de46d/attachment.html new file mode 100644 index 000000000..453275b5f --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/017de46d/attachment.html @@ -0,0 +1,94 @@ +<!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>[194] - add a hook to serve static file with apache directly</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>194</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:18:44 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- add a hook to serve static file with apache directly</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +<li><a href="#puppetmodulesapachetemplatesvhost_catalyst_appconf">puppet/modules/apache/templates/vhost_catalyst_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-07 23:36:49 UTC (rev 193) ++++ puppet/modules/apache/manifests/init.pp 2010-11-08 00:18:44 UTC (rev 194) +@@ -82,7 +82,7 @@ + } + } + +- define vhost_catalyst_app($script, $process = 4, $use_ssl = false) { ++ define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false) { + + include apache::mod_fastcgi + + +<a id="puppetmodulesapachetemplatesvhost_catalyst_appconf">Modified: puppet/modules/apache/templates/vhost_catalyst_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-07 23:36:49 UTC (rev 193) ++++ puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:18:44 UTC (rev 194) +@@ -2,7 +2,9 @@ + ServerName <%= name %> + # Serve static content directly + DocumentRoot /dev/null +- ++<% if location then %> ++ Alias /static <%= location %>/root/static ++<% endif %> + Alias / <%= script %>/ + FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30 + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/027589ff/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/027589ff/attachment-0001.html new file mode 100644 index 000000000..c36b38c8b --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/027589ff/attachment-0001.html @@ -0,0 +1,358 @@ +<!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>[119] removes old style, narrower doc format</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>119</dd> +<dt>Author</dt> <dd>rda</dd> +<dt>Date</dt> <dd>2010-11-08 16:00:25 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>removes old style, narrower doc format</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbranchesliverootstaticstylettsitecss">identity/CatDap/branches/live/root/static/style/ttsite.css</a></li> +<li><a href="#identityCatDapbranchesliveroottemplatelayout">identity/CatDap/branches/live/root/template/layout</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbranchesliverootstaticstylettsitecss">Modified: identity/CatDap/branches/live/root/static/style/ttsite.css</a> +=================================================================== +--- identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 00:09:25 UTC (rev 118) ++++ identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:00:25 UTC (rev 119) +@@ -1,45 +1,14 @@ +- +-html { +- margin: 0; ++html, body { ++ background: #ccc; + } + +-body { +- /*background-color: #ccc;*/ +- color: #000; +- margin: 0; +- padding: 0px; ++#doc { ++ -webkit-box-shadow: 0 0 10px #aaa; ++ -moz-box-shadow: 0 0 10px #aaa; ++ box-shadow: 0 0 10px #aaa; ++ background: #fff; + } + +-#header { +- background-color: #eee; +- border-bottom: 0px solid #fff; +-} +- +-#footer { +- background-color: #ccc; +- text-align: center; +- /*border-top: 1px solid #000;*/ +- position: absolute; +- /*top: 99%;*/ +- float: bottom; +- left: 0px; +- width: 100%; +- height: 1em; +- padding: 0px; +- padding-bottom: 2px; +- top: 100%; +-} +- +-#content { +- padding: 10px; +- vertical-align: top; +-} +- +-h1.title { +- padding: 4px; +- margin: 0px; +-} +- + .message { + color: #000; + } +@@ -48,203 +17,39 @@ + color: #f00; + } + +- +-/* Some stuff from skidoo_too.css */ +-#outerColumnContainer +-{ +- /* reserves space for the left and right columns. you can use either +- * padding, margins, or borders, depending on your needs. however you +- * can use the border method to create a background color for both left +- * and right columns +- */ +- /*height: 98%;*/ +- border-left: solid 12em #eee; +- border-right: solid 0em #eee; +- /*border-bottom: solid 1em #fff;*/ +-} +-#innerColumnContainer +-{ +- border: solid 0px #000; +- border-width: 0 0px; +- margin: 0 -1px; /* compensate for the borders because of +- 100% width declaration */ +- width: 100%; +- /*height: 90%;*/ +- /*z-index: 1;*/ +- background-color: #fff; +- float: right; +-} +-#leftColumn, #middleColumn, #rightColumn, * html #SOWrap +-{ +- overflow: visible; /* fix for IE italics bug */ +- position: relative; /* fix some rendering issues */ +-} +-#SOWrap +-{ +- float: left; +- margin: 0 -1px 0 0; +- width: 100%; +- /*z-index: 3;*/ +-} +-#middleColumn +-{ +- float: right; +- margin: 0 0 0 -1px; +- width: 100%; +- /*z-index: 5;*/ +-} +-#leftColumn +-{ +- float: left; +- margin: 0 1px 0 -12em; +- width: 12em; +- /*z-index: 4;*/ +- height: 100%; +- background-color: #eee; +-} +-#rightColumn +-{ +- float: right; +- width: 14em; +- margin: 0 -14em 0 1px; +- /*z-index: 2;*/ +-} +- +-/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet +- * in the original skidoo layout. +- */ +-.vnav +-{ +- margin: 0em 0; +-} +-.vnav ul, .vnav ul li +-{ +- margin: 0; +- padding: 0; +- list-style-type: none; +- display: block; +-} +-.vnav ul +-{ +- border: solid 0px #fff; +- border-bottom-width: 0; +-} +-.vnav ul li +-{ +- border-bottom: solid 0px #fff; +-} +-.vnav ul li, .vnav ul li a +-{ +- margin: 0; +- display: block; +- padding: 0; +- line-height: normal; +-} +-.vnav ul li a +-{ +- display: block; +- padding: 2px 5px 3px 5px; +-} +-.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover +-{ +- text-decoration: none; +- cursor: pointer; +- background-color: #eee; +- color: #000; +-} +- +-.vnav ul li a:hover +-{ +- text-decoration: none; +- background-color: #ccc; +-} +- +- +-.vnav h3 +-{ +- margin-bottom: 0; +- padding-bottom: 0; +- font-size: 126%; +-} +-* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */ +-{ +- height: 0.01%; +-} +-* html .vnav ul +-{ +- position: relative; /* IE needs this to fix a rendering problem */ +-} +- + /* horizontal navigation elements. create a DIV element with the class hnav + * and stick one unordered list inside it to generate a horizontal menu. + */ + .hnav + { +- border-bottom: solid 0px #fff; +- text-align: center; ++ border-bottom: solid 0px #fff; ++ text-align: center; + } + .hnav, .hnav ul li a + { +- /* need to middor veritcal padding on .hnav and child anchor elements +- * because the anchors are _not_ block elements. since they are not +- * block elements web browsers will not expand .hnav to contain them +- * even with the extra padding. by applying the same padding to both +- * the parent .hnav _looks_ like its containing the child anchor +- * elements. +- */ +- padding-top: 3px; +- padding-bottom: 4px; ++ /* need to middor veritcal padding on .hnav and child anchor elements ++ * because the anchors are _not_ block elements. since they are not ++ * block elements web browsers will not expand .hnav to contain them ++ * even with the extra padding. by applying the same padding to both ++ * the parent .hnav _looks_ like its containing the child anchor ++ * elements. ++ */ ++ padding-top: 3px; ++ padding-bottom: 4px; + } + .hnav ul, .hnav ul li + { +- display: inline; +- list-style-type: none; +- margin: 0; +- padding: 0; ++ display: inline; ++ list-style-type: none; ++ margin: 0; ++ padding: 0; + } + .hnav ul li a + { +- margin: 0 -1px 0 0; +- padding-left: 10px; +- padding-right: 10px; /* short-hand padding attribute would overwrite +- top/bottom padding set in a previous rule */ +- border-left: solid 0px #000; +- border-right: solid 0px #000; +- white-space: nowrap; ++ margin: 0 -1px 0 0; ++ padding-left: 10px; ++ padding-right: 10px; ++ border-left: solid 0px #000; ++ border-right: solid 0px #000; ++ white-space: nowrap; + } +-.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover +-{ +- text-decoration: none; +- color: #7f899a; +-} +-.hnav ul li a:hover +-{ +- text-decoration: none; +- background-color: #ccc; +-} +-.hnav ul li span.divider +-{ +- display: none; +-} +-* html .hnav ul li, * html .hnav ul li a +-{ +- width: 1%; /* IE/Mac needs this */ +- display: inline-block; /* IE/Mac needs this */ +- /* \*/ +- width: auto; +- display: inline; +- /* reset above hack */ +-} +-* html .hnav, * html .hnav ul a +-{ +- /* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. +- IE/Mac will ignore this rule. */ +-} +-* html .HNAV +-{ +- padding: 0; /* IE5/Win will resize #hnav to fit the heights of its +- inline children that have vertical padding. So this +- incorrect case selector hack will be applied only by +- IE 5.x/Win */ +-} +- + +<a id="identityCatDapbranchesliveroottemplatelayout">Modified: identity/CatDap/branches/live/root/template/layout</a> +=================================================================== +--- identity/CatDap/branches/live/root/template/layout 2010-11-08 00:09:25 UTC (rev 118) ++++ identity/CatDap/branches/live/root/template/layout 2010-11-08 15:00:25 UTC (rev 119) +@@ -1,4 +1,4 @@ +-<div id="doc4" class="yui-t7"> ++<div id="doc" class="yui-t7"> + <div id="hd" role="banner"> + [% PROCESS template/header %] + </div> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/027589ff/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/027589ff/attachment.html new file mode 100644 index 000000000..c36b38c8b --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/027589ff/attachment.html @@ -0,0 +1,358 @@ +<!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>[119] removes old style, narrower doc format</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>119</dd> +<dt>Author</dt> <dd>rda</dd> +<dt>Date</dt> <dd>2010-11-08 16:00:25 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>removes old style, narrower doc format</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbranchesliverootstaticstylettsitecss">identity/CatDap/branches/live/root/static/style/ttsite.css</a></li> +<li><a href="#identityCatDapbranchesliveroottemplatelayout">identity/CatDap/branches/live/root/template/layout</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbranchesliverootstaticstylettsitecss">Modified: identity/CatDap/branches/live/root/static/style/ttsite.css</a> +=================================================================== +--- identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 00:09:25 UTC (rev 118) ++++ identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:00:25 UTC (rev 119) +@@ -1,45 +1,14 @@ +- +-html { +- margin: 0; ++html, body { ++ background: #ccc; + } + +-body { +- /*background-color: #ccc;*/ +- color: #000; +- margin: 0; +- padding: 0px; ++#doc { ++ -webkit-box-shadow: 0 0 10px #aaa; ++ -moz-box-shadow: 0 0 10px #aaa; ++ box-shadow: 0 0 10px #aaa; ++ background: #fff; + } + +-#header { +- background-color: #eee; +- border-bottom: 0px solid #fff; +-} +- +-#footer { +- background-color: #ccc; +- text-align: center; +- /*border-top: 1px solid #000;*/ +- position: absolute; +- /*top: 99%;*/ +- float: bottom; +- left: 0px; +- width: 100%; +- height: 1em; +- padding: 0px; +- padding-bottom: 2px; +- top: 100%; +-} +- +-#content { +- padding: 10px; +- vertical-align: top; +-} +- +-h1.title { +- padding: 4px; +- margin: 0px; +-} +- + .message { + color: #000; + } +@@ -48,203 +17,39 @@ + color: #f00; + } + +- +-/* Some stuff from skidoo_too.css */ +-#outerColumnContainer +-{ +- /* reserves space for the left and right columns. you can use either +- * padding, margins, or borders, depending on your needs. however you +- * can use the border method to create a background color for both left +- * and right columns +- */ +- /*height: 98%;*/ +- border-left: solid 12em #eee; +- border-right: solid 0em #eee; +- /*border-bottom: solid 1em #fff;*/ +-} +-#innerColumnContainer +-{ +- border: solid 0px #000; +- border-width: 0 0px; +- margin: 0 -1px; /* compensate for the borders because of +- 100% width declaration */ +- width: 100%; +- /*height: 90%;*/ +- /*z-index: 1;*/ +- background-color: #fff; +- float: right; +-} +-#leftColumn, #middleColumn, #rightColumn, * html #SOWrap +-{ +- overflow: visible; /* fix for IE italics bug */ +- position: relative; /* fix some rendering issues */ +-} +-#SOWrap +-{ +- float: left; +- margin: 0 -1px 0 0; +- width: 100%; +- /*z-index: 3;*/ +-} +-#middleColumn +-{ +- float: right; +- margin: 0 0 0 -1px; +- width: 100%; +- /*z-index: 5;*/ +-} +-#leftColumn +-{ +- float: left; +- margin: 0 1px 0 -12em; +- width: 12em; +- /*z-index: 4;*/ +- height: 100%; +- background-color: #eee; +-} +-#rightColumn +-{ +- float: right; +- width: 14em; +- margin: 0 -14em 0 1px; +- /*z-index: 2;*/ +-} +- +-/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet +- * in the original skidoo layout. +- */ +-.vnav +-{ +- margin: 0em 0; +-} +-.vnav ul, .vnav ul li +-{ +- margin: 0; +- padding: 0; +- list-style-type: none; +- display: block; +-} +-.vnav ul +-{ +- border: solid 0px #fff; +- border-bottom-width: 0; +-} +-.vnav ul li +-{ +- border-bottom: solid 0px #fff; +-} +-.vnav ul li, .vnav ul li a +-{ +- margin: 0; +- display: block; +- padding: 0; +- line-height: normal; +-} +-.vnav ul li a +-{ +- display: block; +- padding: 2px 5px 3px 5px; +-} +-.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover +-{ +- text-decoration: none; +- cursor: pointer; +- background-color: #eee; +- color: #000; +-} +- +-.vnav ul li a:hover +-{ +- text-decoration: none; +- background-color: #ccc; +-} +- +- +-.vnav h3 +-{ +- margin-bottom: 0; +- padding-bottom: 0; +- font-size: 126%; +-} +-* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */ +-{ +- height: 0.01%; +-} +-* html .vnav ul +-{ +- position: relative; /* IE needs this to fix a rendering problem */ +-} +- + /* horizontal navigation elements. create a DIV element with the class hnav + * and stick one unordered list inside it to generate a horizontal menu. + */ + .hnav + { +- border-bottom: solid 0px #fff; +- text-align: center; ++ border-bottom: solid 0px #fff; ++ text-align: center; + } + .hnav, .hnav ul li a + { +- /* need to middor veritcal padding on .hnav and child anchor elements +- * because the anchors are _not_ block elements. since they are not +- * block elements web browsers will not expand .hnav to contain them +- * even with the extra padding. by applying the same padding to both +- * the parent .hnav _looks_ like its containing the child anchor +- * elements. +- */ +- padding-top: 3px; +- padding-bottom: 4px; ++ /* need to middor veritcal padding on .hnav and child anchor elements ++ * because the anchors are _not_ block elements. since they are not ++ * block elements web browsers will not expand .hnav to contain them ++ * even with the extra padding. by applying the same padding to both ++ * the parent .hnav _looks_ like its containing the child anchor ++ * elements. ++ */ ++ padding-top: 3px; ++ padding-bottom: 4px; + } + .hnav ul, .hnav ul li + { +- display: inline; +- list-style-type: none; +- margin: 0; +- padding: 0; ++ display: inline; ++ list-style-type: none; ++ margin: 0; ++ padding: 0; + } + .hnav ul li a + { +- margin: 0 -1px 0 0; +- padding-left: 10px; +- padding-right: 10px; /* short-hand padding attribute would overwrite +- top/bottom padding set in a previous rule */ +- border-left: solid 0px #000; +- border-right: solid 0px #000; +- white-space: nowrap; ++ margin: 0 -1px 0 0; ++ padding-left: 10px; ++ padding-right: 10px; ++ border-left: solid 0px #000; ++ border-right: solid 0px #000; ++ white-space: nowrap; + } +-.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover +-{ +- text-decoration: none; +- color: #7f899a; +-} +-.hnav ul li a:hover +-{ +- text-decoration: none; +- background-color: #ccc; +-} +-.hnav ul li span.divider +-{ +- display: none; +-} +-* html .hnav ul li, * html .hnav ul li a +-{ +- width: 1%; /* IE/Mac needs this */ +- display: inline-block; /* IE/Mac needs this */ +- /* \*/ +- width: auto; +- display: inline; +- /* reset above hack */ +-} +-* html .hnav, * html .hnav ul a +-{ +- /* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. +- IE/Mac will ignore this rule. */ +-} +-* html .HNAV +-{ +- padding: 0; /* IE5/Win will resize #hnav to fit the heights of its +- inline children that have vertical padding. So this +- incorrect case selector hack will be applied only by +- IE 5.x/Win */ +-} +- + +<a id="identityCatDapbranchesliveroottemplatelayout">Modified: identity/CatDap/branches/live/root/template/layout</a> +=================================================================== +--- identity/CatDap/branches/live/root/template/layout 2010-11-08 00:09:25 UTC (rev 118) ++++ identity/CatDap/branches/live/root/template/layout 2010-11-08 15:00:25 UTC (rev 119) +@@ -1,4 +1,4 @@ +-<div id="doc4" class="yui-t7"> ++<div id="doc" class="yui-t7"> + <div id="hd" role="banner"> + [% PROCESS template/header %] + </div> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/0fc65550/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/0fc65550/attachment-0001.html new file mode 100644 index 000000000..d9da40753 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/0fc65550/attachment-0001.html @@ -0,0 +1,159 @@ +<!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>[205] - no need to have a hidden file in the svn repository and puppet config</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>205</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:54:30 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- no need to have a hidden file in the svn repository and puppet config</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesiurtmanifestsinitpp">puppet/modules/iurt/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li><a href="#puppetmodulesiurttemplatesiurtcauldronconf">puppet/modules/iurt/templates/iurt.cauldron.conf</a></li> +</ul> + +<h3>Removed Paths</h3> +<ul> +<li><a href="#puppetmodulesiurttemplatesiurtcauldronconf">puppet/modules/iurt/templates/.iurt.cauldron.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesiurtmanifestsinitpp">Modified: puppet/modules/iurt/manifests/init.pp</a> +=================================================================== +--- puppet/modules/iurt/manifests/init.pp 2010-11-08 01:48:07 UTC (rev 204) ++++ puppet/modules/iurt/manifests/init.pp 2010-11-08 01:54:30 UTC (rev 205) +@@ -13,7 +13,7 @@ + owner => buildbot, + group => buildbot, + mode => 644, +- content => template("iurt/.iurt.cauldron.conf") ++ content => template("iurt/iurt.cauldron.conf") + } + + } + +<a id="puppetmodulesiurttemplatesiurtcauldronconf">Deleted: puppet/modules/iurt/templates/.iurt.cauldron.conf</a> +=================================================================== +--- puppet/modules/iurt/templates/.iurt.cauldron.conf 2010-11-08 01:48:07 UTC (rev 204) ++++ puppet/modules/iurt/templates/.iurt.cauldron.conf 2010-11-08 01:54:30 UTC (rev 205) +@@ -1,30 +0,0 @@ +-{ +- supported_arch => [ 'i586', 'x86_64' ], +- all_media => { 'main' => [ 'release' ], 'contrib' => [ 'release' ] }, +- upload => 'schedbot@pkgsubmit:~/uploads/', +- upload_queue => 'schedbot@pkgsubmit:~/uploads/queue/', +- unwanted_packages => '^monotone-', +- repository => '/mnt/BIG/dis/', +- rsync_to => 'schedbot@pkgsubmit:/mnt/BIG/dis/uploads/build/', +- log_url => 'http://pkgsubmit.mageia.org/queue/build/', +- admin => 'mageia-sysadm@mageia.org', +- iurt_root_command => '/home/buildbot/iurt-trunk/iurt_root_command', +- packager => 'Iurt the rebuild bot <mageia-sysadm@mageia.org>', +- sendmail => 0, +- build_timeout => { +- 'default' => 18000, +- 'gcc' => 57600, +- 'paraview' => 115200, +- 'salome' => 57600, +- 'itk' => 115200, +- 'wrapitk' => 115200, +- 'kernel-rt' => 57600, +- 'kernel-xen' => 57600, +- 'kernel-tmb' => 57600, +- 'openoffice.org' => 345600, +- 'openoffice.org64' => 345600, +- 'openoffice.org-go-ooo' => 345600, +- 'openoffice.org64-go-ooo' => 345600 +- }, +-} +- + +<a id="puppetmodulesiurttemplatesiurtcauldronconffromrev198puppetmodulesiurttemplatesiurtcauldronconf">Copied: puppet/modules/iurt/templates/iurt.cauldron.conf (from rev 198, puppet/modules/iurt/templates/.iurt.cauldron.conf)</a> +=================================================================== +--- puppet/modules/iurt/templates/iurt.cauldron.conf (rev 0) ++++ puppet/modules/iurt/templates/iurt.cauldron.conf 2010-11-08 01:54:30 UTC (rev 205) +@@ -0,0 +1,30 @@ ++{ ++ supported_arch => [ 'i586', 'x86_64' ], ++ all_media => { 'main' => [ 'release' ], 'contrib' => [ 'release' ] }, ++ upload => 'schedbot@pkgsubmit:~/uploads/', ++ upload_queue => 'schedbot@pkgsubmit:~/uploads/queue/', ++ unwanted_packages => '^monotone-', ++ repository => '/mnt/BIG/dis/', ++ rsync_to => 'schedbot@pkgsubmit:/mnt/BIG/dis/uploads/build/', ++ log_url => 'http://pkgsubmit.mageia.org/queue/build/', ++ admin => 'mageia-sysadm@mageia.org', ++ iurt_root_command => '/home/buildbot/iurt-trunk/iurt_root_command', ++ packager => 'Iurt the rebuild bot <mageia-sysadm@mageia.org>', ++ sendmail => 0, ++ build_timeout => { ++ 'default' => 18000, ++ 'gcc' => 57600, ++ 'paraview' => 115200, ++ 'salome' => 57600, ++ 'itk' => 115200, ++ 'wrapitk' => 115200, ++ 'kernel-rt' => 57600, ++ 'kernel-xen' => 57600, ++ 'kernel-tmb' => 57600, ++ 'openoffice.org' => 345600, ++ 'openoffice.org64' => 345600, ++ 'openoffice.org-go-ooo' => 345600, ++ 'openoffice.org64-go-ooo' => 345600 ++ }, ++} ++ + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/0fc65550/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/0fc65550/attachment.html new file mode 100644 index 000000000..d9da40753 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/0fc65550/attachment.html @@ -0,0 +1,159 @@ +<!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>[205] - no need to have a hidden file in the svn repository and puppet config</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>205</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:54:30 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- no need to have a hidden file in the svn repository and puppet config</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesiurtmanifestsinitpp">puppet/modules/iurt/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li><a href="#puppetmodulesiurttemplatesiurtcauldronconf">puppet/modules/iurt/templates/iurt.cauldron.conf</a></li> +</ul> + +<h3>Removed Paths</h3> +<ul> +<li><a href="#puppetmodulesiurttemplatesiurtcauldronconf">puppet/modules/iurt/templates/.iurt.cauldron.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesiurtmanifestsinitpp">Modified: puppet/modules/iurt/manifests/init.pp</a> +=================================================================== +--- puppet/modules/iurt/manifests/init.pp 2010-11-08 01:48:07 UTC (rev 204) ++++ puppet/modules/iurt/manifests/init.pp 2010-11-08 01:54:30 UTC (rev 205) +@@ -13,7 +13,7 @@ + owner => buildbot, + group => buildbot, + mode => 644, +- content => template("iurt/.iurt.cauldron.conf") ++ content => template("iurt/iurt.cauldron.conf") + } + + } + +<a id="puppetmodulesiurttemplatesiurtcauldronconf">Deleted: puppet/modules/iurt/templates/.iurt.cauldron.conf</a> +=================================================================== +--- puppet/modules/iurt/templates/.iurt.cauldron.conf 2010-11-08 01:48:07 UTC (rev 204) ++++ puppet/modules/iurt/templates/.iurt.cauldron.conf 2010-11-08 01:54:30 UTC (rev 205) +@@ -1,30 +0,0 @@ +-{ +- supported_arch => [ 'i586', 'x86_64' ], +- all_media => { 'main' => [ 'release' ], 'contrib' => [ 'release' ] }, +- upload => 'schedbot@pkgsubmit:~/uploads/', +- upload_queue => 'schedbot@pkgsubmit:~/uploads/queue/', +- unwanted_packages => '^monotone-', +- repository => '/mnt/BIG/dis/', +- rsync_to => 'schedbot@pkgsubmit:/mnt/BIG/dis/uploads/build/', +- log_url => 'http://pkgsubmit.mageia.org/queue/build/', +- admin => 'mageia-sysadm@mageia.org', +- iurt_root_command => '/home/buildbot/iurt-trunk/iurt_root_command', +- packager => 'Iurt the rebuild bot <mageia-sysadm@mageia.org>', +- sendmail => 0, +- build_timeout => { +- 'default' => 18000, +- 'gcc' => 57600, +- 'paraview' => 115200, +- 'salome' => 57600, +- 'itk' => 115200, +- 'wrapitk' => 115200, +- 'kernel-rt' => 57600, +- 'kernel-xen' => 57600, +- 'kernel-tmb' => 57600, +- 'openoffice.org' => 345600, +- 'openoffice.org64' => 345600, +- 'openoffice.org-go-ooo' => 345600, +- 'openoffice.org64-go-ooo' => 345600 +- }, +-} +- + +<a id="puppetmodulesiurttemplatesiurtcauldronconffromrev198puppetmodulesiurttemplatesiurtcauldronconf">Copied: puppet/modules/iurt/templates/iurt.cauldron.conf (from rev 198, puppet/modules/iurt/templates/.iurt.cauldron.conf)</a> +=================================================================== +--- puppet/modules/iurt/templates/iurt.cauldron.conf (rev 0) ++++ puppet/modules/iurt/templates/iurt.cauldron.conf 2010-11-08 01:54:30 UTC (rev 205) +@@ -0,0 +1,30 @@ ++{ ++ supported_arch => [ 'i586', 'x86_64' ], ++ all_media => { 'main' => [ 'release' ], 'contrib' => [ 'release' ] }, ++ upload => 'schedbot@pkgsubmit:~/uploads/', ++ upload_queue => 'schedbot@pkgsubmit:~/uploads/queue/', ++ unwanted_packages => '^monotone-', ++ repository => '/mnt/BIG/dis/', ++ rsync_to => 'schedbot@pkgsubmit:/mnt/BIG/dis/uploads/build/', ++ log_url => 'http://pkgsubmit.mageia.org/queue/build/', ++ admin => 'mageia-sysadm@mageia.org', ++ iurt_root_command => '/home/buildbot/iurt-trunk/iurt_root_command', ++ packager => 'Iurt the rebuild bot <mageia-sysadm@mageia.org>', ++ sendmail => 0, ++ build_timeout => { ++ 'default' => 18000, ++ 'gcc' => 57600, ++ 'paraview' => 115200, ++ 'salome' => 57600, ++ 'itk' => 115200, ++ 'wrapitk' => 115200, ++ 'kernel-rt' => 57600, ++ 'kernel-xen' => 57600, ++ 'kernel-tmb' => 57600, ++ 'openoffice.org' => 345600, ++ 'openoffice.org64' => 345600, ++ 'openoffice.org-go-ooo' => 345600, ++ 'openoffice.org64-go-ooo' => 345600 ++ }, ++} ++ + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/18b9cf91/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/18b9cf91/attachment-0001.html new file mode 100644 index 000000000..b1f8510c5 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/18b9cf91/attachment-0001.html @@ -0,0 +1,96 @@ +<!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>[117] - clean the code ( cache is unused, and get_date too, I checked check_upload_tree )</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>117</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 00:06:36 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- clean the code ( cache is unused, and get_date too, I checked check_upload_tree )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#build_systemiurttrunkemi">build_system/iurt/trunk/emi</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="build_systemiurttrunkemi">Modified: build_system/iurt/trunk/emi</a> +=================================================================== +--- build_system/iurt/trunk/emi 2010-11-06 17:49:58 UTC (rev 116) ++++ build_system/iurt/trunk/emi 2010-11-07 23:06:36 UTC (rev 117) +@@ -29,7 +29,7 @@ + + use strict; + use MDK::Common; +-use Iurt::Config qw(config_usage get_date config_init dump_cache init_cache get_author_email); ++use Iurt::Config qw(config_usage config_init get_author_email); + use Iurt::Process qw(check_pid); + use Iurt::Mail qw(sendmail); + use Iurt::File qw(check_upload_tree); +@@ -109,11 +109,8 @@ + $run{pidfile} = "upload"; + my $pidfile = check_pid(\%run); + +-#my $cache = init_cache(\%run, $config, { arch => {} }); + my $cache = { arch => {} }; + +-my ($_fulldate, $daydate) = get_date(); +-$run{daydate} = $daydate; + + my $todo = "$config->{queue}/todo/"; + my $done = "$config->{queue}/done/"; +@@ -284,6 +281,5 @@ + } + } + +-#dump_cache(\%run); + exit(); + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/18b9cf91/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/18b9cf91/attachment.html new file mode 100644 index 000000000..b1f8510c5 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/18b9cf91/attachment.html @@ -0,0 +1,96 @@ +<!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>[117] - clean the code ( cache is unused, and get_date too, I checked check_upload_tree )</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>117</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 00:06:36 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- clean the code ( cache is unused, and get_date too, I checked check_upload_tree )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#build_systemiurttrunkemi">build_system/iurt/trunk/emi</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="build_systemiurttrunkemi">Modified: build_system/iurt/trunk/emi</a> +=================================================================== +--- build_system/iurt/trunk/emi 2010-11-06 17:49:58 UTC (rev 116) ++++ build_system/iurt/trunk/emi 2010-11-07 23:06:36 UTC (rev 117) +@@ -29,7 +29,7 @@ + + use strict; + use MDK::Common; +-use Iurt::Config qw(config_usage get_date config_init dump_cache init_cache get_author_email); ++use Iurt::Config qw(config_usage config_init get_author_email); + use Iurt::Process qw(check_pid); + use Iurt::Mail qw(sendmail); + use Iurt::File qw(check_upload_tree); +@@ -109,11 +109,8 @@ + $run{pidfile} = "upload"; + my $pidfile = check_pid(\%run); + +-#my $cache = init_cache(\%run, $config, { arch => {} }); + my $cache = { arch => {} }; + +-my ($_fulldate, $daydate) = get_date(); +-$run{daydate} = $daydate; + + my $todo = "$config->{queue}/todo/"; + my $done = "$config->{queue}/done/"; +@@ -284,6 +281,5 @@ + } + } + +-#dump_cache(\%run); + exit(); + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/1b6e5120/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/1b6e5120/attachment-0001.html new file mode 100644 index 000000000..ded9c8426 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/1b6e5120/attachment-0001.html @@ -0,0 +1,85 @@ +<!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>[195] add bugs.mageia.org</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>195</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-08 01:21:42 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add bugs.mageia.org</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesbindtemplateszonesmageiaorgzone">puppet/modules/bind/templates/zones/mageia.org.zone</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesbindtemplateszonesmageiaorgzone">Modified: puppet/modules/bind/templates/zones/mageia.org.zone</a> +=================================================================== +--- puppet/modules/bind/templates/zones/mageia.org.zone 2010-11-08 00:18:44 UTC (rev 194) ++++ puppet/modules/bind/templates/zones/mageia.org.zone 2010-11-08 00:21:42 UTC (rev 195) +@@ -3,7 +3,7 @@ + ; $Id$ + $TTL 3D + @ IN SOA ns0.mageia.org. root.mageia.org. ( +- 2010110500 ; Serial ++ 2010110800 ; Serial + 21600 ; Refresh + 3600 ; Retry + 2419200 ; Expire +@@ -70,6 +70,7 @@ + mirrors IN CNAME alamut + epoll IN CNAME alamut + pgsql IN CNAME alamut ++bugs IN CNAME alamut + ; temporary + ;forum IN A 140.211.167.148 + ;wiki IN A 88.191.83.84 + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/1b6e5120/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/1b6e5120/attachment.html new file mode 100644 index 000000000..ded9c8426 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/1b6e5120/attachment.html @@ -0,0 +1,85 @@ +<!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>[195] add bugs.mageia.org</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>195</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-08 01:21:42 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add bugs.mageia.org</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesbindtemplateszonesmageiaorgzone">puppet/modules/bind/templates/zones/mageia.org.zone</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesbindtemplateszonesmageiaorgzone">Modified: puppet/modules/bind/templates/zones/mageia.org.zone</a> +=================================================================== +--- puppet/modules/bind/templates/zones/mageia.org.zone 2010-11-08 00:18:44 UTC (rev 194) ++++ puppet/modules/bind/templates/zones/mageia.org.zone 2010-11-08 00:21:42 UTC (rev 195) +@@ -3,7 +3,7 @@ + ; $Id$ + $TTL 3D + @ IN SOA ns0.mageia.org. root.mageia.org. ( +- 2010110500 ; Serial ++ 2010110800 ; Serial + 21600 ; Refresh + 3600 ; Retry + 2419200 ; Expire +@@ -70,6 +70,7 @@ + mirrors IN CNAME alamut + epoll IN CNAME alamut + pgsql IN CNAME alamut ++bugs IN CNAME alamut + ; temporary + ;forum IN A 140.211.167.148 + ;wiki IN A 88.191.83.84 + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/1b807d14/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/1b807d14/attachment-0001.html new file mode 100644 index 000000000..5b10c38e5 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/1b807d14/attachment-0001.html @@ -0,0 +1,136 @@ +<!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>[208] - remove comment ( not really needed )</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>208</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 14:30:00 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove comment ( not really needed ) +- use domain instead of hardcoding the url</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplates00_default_vhostsconf">puppet/modules/apache/templates/00_default_vhosts.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplates00_default_vhostsconf">Modified: puppet/modules/apache/templates/00_default_vhosts.conf</a> +=================================================================== +--- puppet/modules/apache/templates/00_default_vhosts.conf 2010-11-08 13:13:13 UTC (rev 207) ++++ puppet/modules/apache/templates/00_default_vhosts.conf 2010-11-08 13:30:00 UTC (rev 208) +@@ -1,65 +1,7 @@ +-# $Id: 00_default_vhosts.conf 250119 2008-07-26 14:51:31Z oden $ +-# $HeadURL: svn+ssh://svn.mandriva.com/svn/packages/cooker/apache-conf/current/SOURCES/00_default_vhosts.conf $ +-# This is an example VirtualHosts configuration. +-# +-# Since Apache 1.3.19, we modified the setup to include some nice tricks: +-# +-# - We added the User and Group directives so VirtualHosts now work with +-# suexec directive. If set, Apache will run all cgi scripts under that +-# user and group (provided the uid and gid are > 100 for security). The +-# directories and cgi files *must* belong to that user/group for the +-# feature to work +-# +-# - We added the Setenv VLOG directive. This works in conjunction with +-# the CustomLog in common.conf. When Setenv VLOG is set, apache will +-# create a /var/log/httpd/VLOG-YYYY-MM-<ServerName>.log instead of logging +-# to access_log. Use this instead of defining a special logfile for +-# each vhost, otherwise you eat up file descriptors. +-# +-# - You can also specify a path for the VLOG for each Vhost, for example, +-# to place the logs in each user's directory. However, if you want to +-# use the file for accounting, place it in a directory owned by root, +-# otherwise the user will be able to erase it. +-# +-# - I suggest only including the ErrorLog *only* if the vhost will use +-# cgi scripts. Again, it saves file descriptors! +- +- +-################# IP-based Virtual Hosts +-# <VirtualHost 192.168.2.100> +-# User jmdault +-# Group jmdault +-# DocumentRoot /home/jmdault/public_html +-# ServerName test2.com +-# Setenv VLOG /home/jmdault/logs +-# ErrorLogs /home/jmdault/test2-error_log +-# </VirtualHost> +- +-################# Named VirtualHosts +-# NameVirtualHost 111.222.33.44 +-# <VirtualHost 111.222.33.44> +-# ServerName www.domain.tld +-# ServerPath /domain +-# DocumentRoot /web/domain +-# </VirtualHost> +- +-#<VirtualHost alice.com> +-# ServerName alice.com +-# # normal vhost configs +-# <IfModule peruser.c> +-# # this must match a Processor line +-# ServerEnvironment alice users /home/alice +-# +-# # these are optional - defaults to the values specified above +-# MinSpareProcessors 4 +-# MaxProcessors 20 +-# </IfModule> +-#</VirtualHost> +- + <VirtualHost *:80> + DocumentRoot /var/www/html + <Location /> + Allow from all + </Location> +- Redirect / http://www.mageia.org/ ++ Redirect / http://www.<%= domain %>/ + </VirtualHost> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/1b807d14/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/1b807d14/attachment.html new file mode 100644 index 000000000..5b10c38e5 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/1b807d14/attachment.html @@ -0,0 +1,136 @@ +<!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>[208] - remove comment ( not really needed )</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>208</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 14:30:00 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove comment ( not really needed ) +- use domain instead of hardcoding the url</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplates00_default_vhostsconf">puppet/modules/apache/templates/00_default_vhosts.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplates00_default_vhostsconf">Modified: puppet/modules/apache/templates/00_default_vhosts.conf</a> +=================================================================== +--- puppet/modules/apache/templates/00_default_vhosts.conf 2010-11-08 13:13:13 UTC (rev 207) ++++ puppet/modules/apache/templates/00_default_vhosts.conf 2010-11-08 13:30:00 UTC (rev 208) +@@ -1,65 +1,7 @@ +-# $Id: 00_default_vhosts.conf 250119 2008-07-26 14:51:31Z oden $ +-# $HeadURL: svn+ssh://svn.mandriva.com/svn/packages/cooker/apache-conf/current/SOURCES/00_default_vhosts.conf $ +-# This is an example VirtualHosts configuration. +-# +-# Since Apache 1.3.19, we modified the setup to include some nice tricks: +-# +-# - We added the User and Group directives so VirtualHosts now work with +-# suexec directive. If set, Apache will run all cgi scripts under that +-# user and group (provided the uid and gid are > 100 for security). The +-# directories and cgi files *must* belong to that user/group for the +-# feature to work +-# +-# - We added the Setenv VLOG directive. This works in conjunction with +-# the CustomLog in common.conf. When Setenv VLOG is set, apache will +-# create a /var/log/httpd/VLOG-YYYY-MM-<ServerName>.log instead of logging +-# to access_log. Use this instead of defining a special logfile for +-# each vhost, otherwise you eat up file descriptors. +-# +-# - You can also specify a path for the VLOG for each Vhost, for example, +-# to place the logs in each user's directory. However, if you want to +-# use the file for accounting, place it in a directory owned by root, +-# otherwise the user will be able to erase it. +-# +-# - I suggest only including the ErrorLog *only* if the vhost will use +-# cgi scripts. Again, it saves file descriptors! +- +- +-################# IP-based Virtual Hosts +-# <VirtualHost 192.168.2.100> +-# User jmdault +-# Group jmdault +-# DocumentRoot /home/jmdault/public_html +-# ServerName test2.com +-# Setenv VLOG /home/jmdault/logs +-# ErrorLogs /home/jmdault/test2-error_log +-# </VirtualHost> +- +-################# Named VirtualHosts +-# NameVirtualHost 111.222.33.44 +-# <VirtualHost 111.222.33.44> +-# ServerName www.domain.tld +-# ServerPath /domain +-# DocumentRoot /web/domain +-# </VirtualHost> +- +-#<VirtualHost alice.com> +-# ServerName alice.com +-# # normal vhost configs +-# <IfModule peruser.c> +-# # this must match a Processor line +-# ServerEnvironment alice users /home/alice +-# +-# # these are optional - defaults to the values specified above +-# MinSpareProcessors 4 +-# MaxProcessors 20 +-# </IfModule> +-#</VirtualHost> +- + <VirtualHost *:80> + DocumentRoot /var/www/html + <Location /> + Allow from all + </Location> +- Redirect / http://www.mageia.org/ ++ Redirect / http://www.<%= domain %>/ + </VirtualHost> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/43d83843/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/43d83843/attachment-0001.html new file mode 100644 index 000000000..4f852dfea --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/43d83843/attachment-0001.html @@ -0,0 +1,77 @@ +<!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>[199] - fix syntax error in the template ( TODO add a check in pre-commit )</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>199</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:47:08 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix syntax error in the template ( TODO add a check in pre-commit )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplatesvhost_catalyst_appconf">puppet/modules/apache/templates/vhost_catalyst_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplatesvhost_catalyst_appconf">Modified: puppet/modules/apache/templates/vhost_catalyst_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:44:13 UTC (rev 198) ++++ puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:47:08 UTC (rev 199) +@@ -17,7 +17,7 @@ + DocumentRoot /dev/null + <% if location then %> + Alias /static <%= location %>/root/static +-<% endif %> ++<% end %> + Alias / <%= script %>/ + FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30 + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/43d83843/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/43d83843/attachment.html new file mode 100644 index 000000000..4f852dfea --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/43d83843/attachment.html @@ -0,0 +1,77 @@ +<!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>[199] - fix syntax error in the template ( TODO add a check in pre-commit )</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>199</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:47:08 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix syntax error in the template ( TODO add a check in pre-commit )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplatesvhost_catalyst_appconf">puppet/modules/apache/templates/vhost_catalyst_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplatesvhost_catalyst_appconf">Modified: puppet/modules/apache/templates/vhost_catalyst_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:44:13 UTC (rev 198) ++++ puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:47:08 UTC (rev 199) +@@ -17,7 +17,7 @@ + DocumentRoot /dev/null + <% if location then %> + Alias /static <%= location %>/root/static +-<% endif %> ++<% end %> + Alias / <%= script %>/ + FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30 + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/4aec9ca7/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/4aec9ca7/attachment-0001.html new file mode 100644 index 000000000..efa87bfed --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/4aec9ca7/attachment-0001.html @@ -0,0 +1,137 @@ +<!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>[201] - I refactored too much this doesn't work as intended for define </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>201</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:12:49 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- I refactored too much this doesn't work as intended for define </pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +<li><a href="#puppetmodulesapachetemplatesvhost_django_appconf">puppet/modules/apache/templates/vhost_django_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-08 00:48:05 UTC (rev 200) ++++ puppet/modules/apache/manifests/init.pp 2010-11-08 01:12:49 UTC (rev 201) +@@ -1,8 +1,5 @@ + class apache { + +- $vhost_dir = "/etc/httpd/conf/vhosts.d" +- $wsgi_dir = "/usr/local/lib/wsgi" +- + class base { + package { "apache-mpm-prefork": + alias => apache, +@@ -62,7 +59,7 @@ + ensure => installed + } + +- file { $wsgi_dir: ++ file { "/usr/local/lib/wsgi": + ensure => directory, + owner => root, + group => root, +@@ -72,7 +69,7 @@ + + define vhost_redirect_ssl() { + file { "redirect_ssl_$name.conf": +- path => "$vhost_dir/redirect_ssl_$name.conf", ++ path => "/etc/httpd/conf/vhosts.d/redirect_ssl_$name.conf", + ensure => "present", + owner => root, + group => root, +@@ -87,7 +84,7 @@ + include apache::mod_fastcgi + + file { "$name.conf": +- path => "$vhost_dir/$name.conf", ++ path => "/etc/httpd/conf/vhosts.d/$name.conf", + ensure => "present", + owner => root, + group => root, +@@ -101,7 +98,7 @@ + include apache::mod_wsgi + + file { "$name.conf": +- path => "$vhost_dir/$name.conf", ++ path => "/etc/httpd/conf/vhosts.d/$name.conf", + ensure => "present", + owner => root, + group => root, +@@ -112,7 +109,7 @@ + + # fichier django wsgi + file { "$name.wsgi": +- path => "$wsgi_dir/$name.wsgi", ++ path => "/usr/local/lib/wsgi/$name.wsgi", + ensure => "present", + owner => root, + group => root, + +<a id="puppetmodulesapachetemplatesvhost_django_appconf">Modified: puppet/modules/apache/templates/vhost_django_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_django_app.conf 2010-11-08 00:48:05 UTC (rev 200) ++++ puppet/modules/apache/templates/vhost_django_app.conf 2010-11-08 01:12:49 UTC (rev 201) +@@ -3,7 +3,7 @@ + # Serve static content directly + DocumentRoot /dev/null + +- WSGIScriptAlias / <%= wsgi_dir%>/<%= name %>.wsgi ++ WSGIScriptAlias / /usr/local/lib/wsgi/<%= name %>.wsgi + + <Location /> + Allow from all + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/4aec9ca7/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/4aec9ca7/attachment.html new file mode 100644 index 000000000..efa87bfed --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/4aec9ca7/attachment.html @@ -0,0 +1,137 @@ +<!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>[201] - I refactored too much this doesn't work as intended for define </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>201</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:12:49 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- I refactored too much this doesn't work as intended for define </pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +<li><a href="#puppetmodulesapachetemplatesvhost_django_appconf">puppet/modules/apache/templates/vhost_django_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-08 00:48:05 UTC (rev 200) ++++ puppet/modules/apache/manifests/init.pp 2010-11-08 01:12:49 UTC (rev 201) +@@ -1,8 +1,5 @@ + class apache { + +- $vhost_dir = "/etc/httpd/conf/vhosts.d" +- $wsgi_dir = "/usr/local/lib/wsgi" +- + class base { + package { "apache-mpm-prefork": + alias => apache, +@@ -62,7 +59,7 @@ + ensure => installed + } + +- file { $wsgi_dir: ++ file { "/usr/local/lib/wsgi": + ensure => directory, + owner => root, + group => root, +@@ -72,7 +69,7 @@ + + define vhost_redirect_ssl() { + file { "redirect_ssl_$name.conf": +- path => "$vhost_dir/redirect_ssl_$name.conf", ++ path => "/etc/httpd/conf/vhosts.d/redirect_ssl_$name.conf", + ensure => "present", + owner => root, + group => root, +@@ -87,7 +84,7 @@ + include apache::mod_fastcgi + + file { "$name.conf": +- path => "$vhost_dir/$name.conf", ++ path => "/etc/httpd/conf/vhosts.d/$name.conf", + ensure => "present", + owner => root, + group => root, +@@ -101,7 +98,7 @@ + include apache::mod_wsgi + + file { "$name.conf": +- path => "$vhost_dir/$name.conf", ++ path => "/etc/httpd/conf/vhosts.d/$name.conf", + ensure => "present", + owner => root, + group => root, +@@ -112,7 +109,7 @@ + + # fichier django wsgi + file { "$name.wsgi": +- path => "$wsgi_dir/$name.wsgi", ++ path => "/usr/local/lib/wsgi/$name.wsgi", + ensure => "present", + owner => root, + group => root, + +<a id="puppetmodulesapachetemplatesvhost_django_appconf">Modified: puppet/modules/apache/templates/vhost_django_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_django_app.conf 2010-11-08 00:48:05 UTC (rev 200) ++++ puppet/modules/apache/templates/vhost_django_app.conf 2010-11-08 01:12:49 UTC (rev 201) +@@ -3,7 +3,7 @@ + # Serve static content directly + DocumentRoot /dev/null + +- WSGIScriptAlias / <%= wsgi_dir%>/<%= name %>.wsgi ++ WSGIScriptAlias / /usr/local/lib/wsgi/<%= name %>.wsgi + + <Location /> + Allow from all + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/4d4ccdba/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/4d4ccdba/attachment-0001.html new file mode 100644 index 000000000..0330be343 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/4d4ccdba/attachment-0001.html @@ -0,0 +1,120 @@ +<!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>[203] - remove uneeded include, and remove the old config file</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>203</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:47:08 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove uneeded include, and remove the old config file</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulescatdapmanifestsinitpp">puppet/modules/catdap/manifests/init.pp</a></li> +</ul> + +<h3>Removed Paths</h3> +<ul> +<li><a href="#puppetmodulescatdaptemplatescatdap_vhostconf">puppet/modules/catdap/templates/catdap_vhost.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulescatdapmanifestsinitpp">Modified: puppet/modules/catdap/manifests/init.pp</a> +=================================================================== +--- puppet/modules/catdap/manifests/init.pp 2010-11-08 01:16:10 UTC (rev 202) ++++ puppet/modules/catdap/manifests/init.pp 2010-11-08 01:47:08 UTC (rev 203) +@@ -1,9 +1,5 @@ + class catdap { + +- include subversion +- include subversion::client +- include apache::mod_fcgid +- + $catdap_location = "/var/www/identity" + $catdap_vhost = "identity.$domain" + +@@ -42,15 +38,4 @@ + } + + apache::vhost_redirect_ssl { $catdap_vhost: } +- +- # add a apache vhost +-# file { "$catdap_vhost.conf": +-# path => "/etc/httpd/conf/vhosts.d/$catdap_vhost.conf", +-# ensure => "present", +-# owner => root, +-# group => root, +-# mode => 644, +-# notify => Service['apache'], +-# content => template("catdap/catdap_vhost.conf") +-# } + } + +<a id="puppetmodulescatdaptemplatescatdap_vhostconf">Deleted: puppet/modules/catdap/templates/catdap_vhost.conf</a> +=================================================================== +--- puppet/modules/catdap/templates/catdap_vhost.conf 2010-11-08 01:16:10 UTC (rev 202) ++++ puppet/modules/catdap/templates/catdap_vhost.conf 2010-11-08 01:47:08 UTC (rev 203) +@@ -1,15 +0,0 @@ +-<VirtualHost *:80> +- ServerName <%= catdap_vhost %> +- # Serve static content directly +- DocumentRoot <%= catdap_location %>/root +- Alias /static <%= catdap_location %>/root/static +- +- Alias / <%= catdap_location %>/script/catdap_fastcgi.pl/ +- +- <Directory <%= catdap_location %>/script> +- Options +ExecCGI +- SetHandler fcgid-script +- Allow from all +- </Directory> +-</VirtualHost> +- + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/4d4ccdba/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/4d4ccdba/attachment.html new file mode 100644 index 000000000..0330be343 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/4d4ccdba/attachment.html @@ -0,0 +1,120 @@ +<!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>[203] - remove uneeded include, and remove the old config file</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>203</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:47:08 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove uneeded include, and remove the old config file</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulescatdapmanifestsinitpp">puppet/modules/catdap/manifests/init.pp</a></li> +</ul> + +<h3>Removed Paths</h3> +<ul> +<li><a href="#puppetmodulescatdaptemplatescatdap_vhostconf">puppet/modules/catdap/templates/catdap_vhost.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulescatdapmanifestsinitpp">Modified: puppet/modules/catdap/manifests/init.pp</a> +=================================================================== +--- puppet/modules/catdap/manifests/init.pp 2010-11-08 01:16:10 UTC (rev 202) ++++ puppet/modules/catdap/manifests/init.pp 2010-11-08 01:47:08 UTC (rev 203) +@@ -1,9 +1,5 @@ + class catdap { + +- include subversion +- include subversion::client +- include apache::mod_fcgid +- + $catdap_location = "/var/www/identity" + $catdap_vhost = "identity.$domain" + +@@ -42,15 +38,4 @@ + } + + apache::vhost_redirect_ssl { $catdap_vhost: } +- +- # add a apache vhost +-# file { "$catdap_vhost.conf": +-# path => "/etc/httpd/conf/vhosts.d/$catdap_vhost.conf", +-# ensure => "present", +-# owner => root, +-# group => root, +-# mode => 644, +-# notify => Service['apache'], +-# content => template("catdap/catdap_vhost.conf") +-# } + } + +<a id="puppetmodulescatdaptemplatescatdap_vhostconf">Deleted: puppet/modules/catdap/templates/catdap_vhost.conf</a> +=================================================================== +--- puppet/modules/catdap/templates/catdap_vhost.conf 2010-11-08 01:16:10 UTC (rev 202) ++++ puppet/modules/catdap/templates/catdap_vhost.conf 2010-11-08 01:47:08 UTC (rev 203) +@@ -1,15 +0,0 @@ +-<VirtualHost *:80> +- ServerName <%= catdap_vhost %> +- # Serve static content directly +- DocumentRoot <%= catdap_location %>/root +- Alias /static <%= catdap_location %>/root/static +- +- Alias / <%= catdap_location %>/script/catdap_fastcgi.pl/ +- +- <Directory <%= catdap_location %>/script> +- Options +ExecCGI +- SetHandler fcgid-script +- Allow from all +- </Directory> +-</VirtualHost> +- + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/54233885/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/54233885/attachment-0001.html new file mode 100644 index 000000000..399f9ed87 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/54233885/attachment-0001.html @@ -0,0 +1,76 @@ +<!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>[198] - forgot to give the script ( I didn't found how to make sure that puppet read my mind )</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>198</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:44:13 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- forgot to give the script ( I didn't found how to make sure that puppet read my mind )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulescatdapmanifestsinitpp">puppet/modules/catdap/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulescatdapmanifestsinitpp">Modified: puppet/modules/catdap/manifests/init.pp</a> +=================================================================== +--- puppet/modules/catdap/manifests/init.pp 2010-11-08 00:41:39 UTC (rev 197) ++++ puppet/modules/catdap/manifests/init.pp 2010-11-08 00:44:13 UTC (rev 198) +@@ -36,6 +36,7 @@ + } + + apache::vhost_catalyst_app { $catdap_vhost: ++ script => "$catdap_location/script/catdap_fastcgi.pl", + location => $catdap_location, + use_ssl => true, + } + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/54233885/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/54233885/attachment.html new file mode 100644 index 000000000..399f9ed87 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/54233885/attachment.html @@ -0,0 +1,76 @@ +<!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>[198] - forgot to give the script ( I didn't found how to make sure that puppet read my mind )</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>198</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:44:13 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- forgot to give the script ( I didn't found how to make sure that puppet read my mind )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulescatdapmanifestsinitpp">puppet/modules/catdap/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulescatdapmanifestsinitpp">Modified: puppet/modules/catdap/manifests/init.pp</a> +=================================================================== +--- puppet/modules/catdap/manifests/init.pp 2010-11-08 00:41:39 UTC (rev 197) ++++ puppet/modules/catdap/manifests/init.pp 2010-11-08 00:44:13 UTC (rev 198) +@@ -36,6 +36,7 @@ + } + + apache::vhost_catalyst_app { $catdap_vhost: ++ script => "$catdap_location/script/catdap_fastcgi.pl", + location => $catdap_location, + use_ssl => true, + } + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/641842a6/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/641842a6/attachment-0001.html new file mode 100644 index 000000000..55db1ea75 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/641842a6/attachment-0001.html @@ -0,0 +1,74 @@ +<!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>[118] - remove wrong import, to fix catdap </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>118</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:09:25 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove wrong import, to fix catdap </pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbrancheslivelibCatDapControllerRootpm">identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbrancheslivelibCatDapControllerRootpm">Modified: identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm</a> +=================================================================== +--- identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm 2010-11-07 23:06:36 UTC (rev 117) ++++ identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm 2010-11-08 00:09:25 UTC (rev 118) +@@ -1,5 +1,4 @@ + package CatDap::Controller::Root; +-use Static::Simple; + use Moose; + use namespace::autoclean; + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/641842a6/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/641842a6/attachment.html new file mode 100644 index 000000000..55db1ea75 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/641842a6/attachment.html @@ -0,0 +1,74 @@ +<!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>[118] - remove wrong import, to fix catdap </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>118</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:09:25 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove wrong import, to fix catdap </pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbrancheslivelibCatDapControllerRootpm">identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbrancheslivelibCatDapControllerRootpm">Modified: identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm</a> +=================================================================== +--- identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm 2010-11-07 23:06:36 UTC (rev 117) ++++ identity/CatDap/branches/live/lib/CatDap/Controller/Root.pm 2010-11-08 00:09:25 UTC (rev 118) +@@ -1,5 +1,4 @@ + package CatDap::Controller::Root; +-use Static::Simple; + use Moose; + use namespace::autoclean; + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/76d6af4a/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/76d6af4a/attachment-0001.html new file mode 100644 index 000000000..41d4cde8c --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/76d6af4a/attachment-0001.html @@ -0,0 +1,77 @@ +<!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>[206] - disable until we decided on how to fix it</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>206</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 11:36:35 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- disable until we decided on how to fix it</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmanifestsnodespp">puppet/manifests/nodes.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmanifestsnodespp">Modified: puppet/manifests/nodes.pp</a> +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-08 01:54:30 UTC (rev 205) ++++ puppet/manifests/nodes.pp 2010-11-08 10:36:35 UTC (rev 206) +@@ -60,7 +60,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- include iurt ++ #include iurt + timezone::timezone { "Europe/Paris": } + } + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/76d6af4a/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/76d6af4a/attachment.html new file mode 100644 index 000000000..41d4cde8c --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/76d6af4a/attachment.html @@ -0,0 +1,77 @@ +<!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>[206] - disable until we decided on how to fix it</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>206</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 11:36:35 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- disable until we decided on how to fix it</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmanifestsnodespp">puppet/manifests/nodes.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmanifestsnodespp">Modified: puppet/manifests/nodes.pp</a> +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-08 01:54:30 UTC (rev 205) ++++ puppet/manifests/nodes.pp 2010-11-08 10:36:35 UTC (rev 206) +@@ -60,7 +60,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- include iurt ++ #include iurt + timezone::timezone { "Europe/Paris": } + } + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/86ccfbf1/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/86ccfbf1/attachment-0001.html new file mode 100644 index 000000000..0a5b3a803 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/86ccfbf1/attachment-0001.html @@ -0,0 +1,99 @@ +<!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>[197] - deploy catdap with ssl and fastcgi</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>197</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:41:39 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- deploy catdap with ssl and fastcgi</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulescatdapmanifestsinitpp">puppet/modules/catdap/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulescatdapmanifestsinitpp">Modified: puppet/modules/catdap/manifests/init.pp</a> +=================================================================== +--- puppet/modules/catdap/manifests/init.pp 2010-11-08 00:37:59 UTC (rev 196) ++++ puppet/modules/catdap/manifests/init.pp 2010-11-08 00:41:39 UTC (rev 197) +@@ -35,14 +35,21 @@ + require => Subversion::Snapshot[$catdap_location] + } + ++ apache::vhost_catalyst_app { $catdap_vhost: ++ location => $catdap_location, ++ use_ssl => true, ++ } ++ ++ apache::vhost_redirect_ssl { $catdap_vhost: } ++ + # add a apache vhost +- file { "$catdap_vhost.conf": +- path => "/etc/httpd/conf/vhosts.d/$catdap_vhost.conf", +- ensure => "present", +- owner => root, +- group => root, +- mode => 644, +- notify => Service['apache'], +- content => template("catdap/catdap_vhost.conf") +- } ++# file { "$catdap_vhost.conf": ++# path => "/etc/httpd/conf/vhosts.d/$catdap_vhost.conf", ++# ensure => "present", ++# owner => root, ++# group => root, ++# mode => 644, ++# notify => Service['apache'], ++# content => template("catdap/catdap_vhost.conf") ++# } + } + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/86ccfbf1/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/86ccfbf1/attachment.html new file mode 100644 index 000000000..0a5b3a803 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/86ccfbf1/attachment.html @@ -0,0 +1,99 @@ +<!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>[197] - deploy catdap with ssl and fastcgi</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>197</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:41:39 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- deploy catdap with ssl and fastcgi</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulescatdapmanifestsinitpp">puppet/modules/catdap/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulescatdapmanifestsinitpp">Modified: puppet/modules/catdap/manifests/init.pp</a> +=================================================================== +--- puppet/modules/catdap/manifests/init.pp 2010-11-08 00:37:59 UTC (rev 196) ++++ puppet/modules/catdap/manifests/init.pp 2010-11-08 00:41:39 UTC (rev 197) +@@ -35,14 +35,21 @@ + require => Subversion::Snapshot[$catdap_location] + } + ++ apache::vhost_catalyst_app { $catdap_vhost: ++ location => $catdap_location, ++ use_ssl => true, ++ } ++ ++ apache::vhost_redirect_ssl { $catdap_vhost: } ++ + # add a apache vhost +- file { "$catdap_vhost.conf": +- path => "/etc/httpd/conf/vhosts.d/$catdap_vhost.conf", +- ensure => "present", +- owner => root, +- group => root, +- mode => 644, +- notify => Service['apache'], +- content => template("catdap/catdap_vhost.conf") +- } ++# file { "$catdap_vhost.conf": ++# path => "/etc/httpd/conf/vhosts.d/$catdap_vhost.conf", ++# ensure => "present", ++# owner => root, ++# group => root, ++# mode => 644, ++# notify => Service['apache'], ++# content => template("catdap/catdap_vhost.conf") ++# } + } + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/a6d214d9/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/a6d214d9/attachment-0001.html new file mode 100644 index 000000000..8a7fc98b0 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/a6d214d9/attachment-0001.html @@ -0,0 +1,84 @@ +<!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>[202] - deploy the tagmail configuration file, so we get error on manifest application</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>202</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:16:10 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- deploy the tagmail configuration file, so we get error on manifest application</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespuppetmanifestsinitpp">puppet/modules/puppet/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespuppetmanifestsinitpp">Modified: puppet/modules/puppet/manifests/init.pp</a> +=================================================================== +--- puppet/modules/puppet/manifests/init.pp 2010-11-08 01:12:49 UTC (rev 201) ++++ puppet/modules/puppet/manifests/init.pp 2010-11-08 01:16:10 UTC (rev 202) +@@ -39,5 +39,15 @@ + mode => 700, + recurse => true + } ++ ++ file { '/etc/puppet/tagmail.conf': ++ ensure => present, ++ owner => puppet, ++ group => puppet, ++ mode => 700, ++ recurse => true ++ content => template("puppet/tagmail.conf"), ++ } ++ + } + } + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/a6d214d9/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/a6d214d9/attachment.html new file mode 100644 index 000000000..8a7fc98b0 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/a6d214d9/attachment.html @@ -0,0 +1,84 @@ +<!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>[202] - deploy the tagmail configuration file, so we get error on manifest application</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>202</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:16:10 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- deploy the tagmail configuration file, so we get error on manifest application</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespuppetmanifestsinitpp">puppet/modules/puppet/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespuppetmanifestsinitpp">Modified: puppet/modules/puppet/manifests/init.pp</a> +=================================================================== +--- puppet/modules/puppet/manifests/init.pp 2010-11-08 01:12:49 UTC (rev 201) ++++ puppet/modules/puppet/manifests/init.pp 2010-11-08 01:16:10 UTC (rev 202) +@@ -39,5 +39,15 @@ + mode => 700, + recurse => true + } ++ ++ file { '/etc/puppet/tagmail.conf': ++ ensure => present, ++ owner => puppet, ++ group => puppet, ++ mode => 700, ++ recurse => true ++ content => template("puppet/tagmail.conf"), ++ } ++ + } + } + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/a7bc2d4d/attachment-0001.bin b/zarb-ml/mageia-sysadm/attachments/20101108/a7bc2d4d/attachment-0001.bin new file mode 100644 index 000000000..42c5bfd1a --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/a7bc2d4d/attachment-0001.bin @@ -0,0 +1,28 @@ +Index: iurt2 +=================================================================== +--- iurt2 (revision 103) ++++ iurt2 (working copy) +@@ -388,14 +388,16 @@ + chomp $real_arch; + my $HOME = $ENV{HOME}; + my $configfile = "$HOME/.iurt.$run{distro_tag}.conf"; ++my $sysconfigfile = "/etc/iurt/$run{distro_tag}.conf"; + +-plog('DEBUG', "load config: $configfile"); +-my $config; +-if (-f $configfile) { +- $config = eval(cat_($configfile)) +- or die "FATAL $program_name: syntax error in $configfile"; +-} else { +- $config = {}; ++my $config = {}; ++foreach my $f ($configfile, $sysconfigfile) { ++ plog('DEBUG', "load config: $f"); ++ if (-f $f) { ++ $config = eval(cat_($f)) ++ or die "FATAL $program_name: syntax error in $f"; ++ last; ++ } + } + + if ($run{repository}) { diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/a7bc2d4d/attachment.bin b/zarb-ml/mageia-sysadm/attachments/20101108/a7bc2d4d/attachment.bin new file mode 100644 index 000000000..42c5bfd1a --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/a7bc2d4d/attachment.bin @@ -0,0 +1,28 @@ +Index: iurt2 +=================================================================== +--- iurt2 (revision 103) ++++ iurt2 (working copy) +@@ -388,14 +388,16 @@ + chomp $real_arch; + my $HOME = $ENV{HOME}; + my $configfile = "$HOME/.iurt.$run{distro_tag}.conf"; ++my $sysconfigfile = "/etc/iurt/$run{distro_tag}.conf"; + +-plog('DEBUG', "load config: $configfile"); +-my $config; +-if (-f $configfile) { +- $config = eval(cat_($configfile)) +- or die "FATAL $program_name: syntax error in $configfile"; +-} else { +- $config = {}; ++my $config = {}; ++foreach my $f ($configfile, $sysconfigfile) { ++ plog('DEBUG', "load config: $f"); ++ if (-f $f) { ++ $config = eval(cat_($f)) ++ or die "FATAL $program_name: syntax error in $f"; ++ last; ++ } + } + + if ($run{repository}) { diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/ac9288fc/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/ac9288fc/attachment-0001.html new file mode 100644 index 000000000..044969d11 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/ac9288fc/attachment-0001.html @@ -0,0 +1,81 @@ +<!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>[192] - add a mod_ssl class</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>192</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 00:30:39 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- add a mod_ssl class</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-07 13:17:28 UTC (rev 191) ++++ puppet/modules/apache/manifests/init.pp 2010-11-07 23:30:39 UTC (rev 192) +@@ -51,6 +51,12 @@ + } + } + ++ class mod_ssl inherits base { ++ package { "apache-mod_ssl": ++ ensure => installed ++ } ++ } ++ + class mod_wsgi inherits base { + package { "apache-mod_wsgi": + ensure => installed + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/ac9288fc/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/ac9288fc/attachment.html new file mode 100644 index 000000000..044969d11 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/ac9288fc/attachment.html @@ -0,0 +1,81 @@ +<!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>[192] - add a mod_ssl class</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>192</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 00:30:39 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- add a mod_ssl class</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-07 13:17:28 UTC (rev 191) ++++ puppet/modules/apache/manifests/init.pp 2010-11-07 23:30:39 UTC (rev 192) +@@ -51,6 +51,12 @@ + } + } + ++ class mod_ssl inherits base { ++ package { "apache-mod_ssl": ++ ensure => installed ++ } ++ } ++ + class mod_wsgi inherits base { + package { "apache-mod_wsgi": + ensure => installed + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/b8c55f9f/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/b8c55f9f/attachment-0001.html new file mode 100644 index 000000000..652e90499 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/b8c55f9f/attachment-0001.html @@ -0,0 +1,87 @@ +<!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>[196] - add logic for using ssl certificate ( no SNI for the moment, but should be done later )</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>196</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:37:59 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- add logic for using ssl certificate ( no SNI for the moment, but should be done later )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplatesvhost_catalyst_appconf">puppet/modules/apache/templates/vhost_catalyst_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplatesvhost_catalyst_appconf">Modified: puppet/modules/apache/templates/vhost_catalyst_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:21:42 UTC (rev 195) ++++ puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:37:59 UTC (rev 196) +@@ -1,4 +1,17 @@ +-<VirtualHost *:80> ++<% if use_ssl then ++ port = 443 ++else ++ port = 80 ++end ++%> ++ ++<VirtualHost *:<%= port %>> ++<% if use_ssl then %> ++ SSLEngine on ++ #TODO deploy SNI later ++ SSLCertificateFile /etc/ssl/apache/apache.pem ++ SSLCertificateKeyFile /etc/ssl/apache/apache.pem ++<% end %> + ServerName <%= name %> + # Serve static content directly + DocumentRoot /dev/null + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/b8c55f9f/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/b8c55f9f/attachment.html new file mode 100644 index 000000000..652e90499 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/b8c55f9f/attachment.html @@ -0,0 +1,87 @@ +<!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>[196] - add logic for using ssl certificate ( no SNI for the moment, but should be done later )</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>196</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:37:59 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- add logic for using ssl certificate ( no SNI for the moment, but should be done later )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplatesvhost_catalyst_appconf">puppet/modules/apache/templates/vhost_catalyst_app.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplatesvhost_catalyst_appconf">Modified: puppet/modules/apache/templates/vhost_catalyst_app.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:21:42 UTC (rev 195) ++++ puppet/modules/apache/templates/vhost_catalyst_app.conf 2010-11-08 00:37:59 UTC (rev 196) +@@ -1,4 +1,17 @@ +-<VirtualHost *:80> ++<% if use_ssl then ++ port = 443 ++else ++ port = 80 ++end ++%> ++ ++<VirtualHost *:<%= port %>> ++<% if use_ssl then %> ++ SSLEngine on ++ #TODO deploy SNI later ++ SSLCertificateFile /etc/ssl/apache/apache.pem ++ SSLCertificateKeyFile /etc/ssl/apache/apache.pem ++<% end %> + ServerName <%= name %> + # Serve static content directly + DocumentRoot /dev/null + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e5c608dc/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/e5c608dc/attachment-0001.html new file mode 100644 index 000000000..153d40d14 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e5c608dc/attachment-0001.html @@ -0,0 +1,76 @@ +<!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>[204] - fix manifests</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>204</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:48:07 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix manifests</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespuppetmanifestsinitpp">puppet/modules/puppet/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespuppetmanifestsinitpp">Modified: puppet/modules/puppet/manifests/init.pp</a> +=================================================================== +--- puppet/modules/puppet/manifests/init.pp 2010-11-08 01:47:08 UTC (rev 203) ++++ puppet/modules/puppet/manifests/init.pp 2010-11-08 01:48:07 UTC (rev 204) +@@ -45,7 +45,6 @@ + owner => puppet, + group => puppet, + mode => 700, +- recurse => true + content => template("puppet/tagmail.conf"), + } + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e5c608dc/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/e5c608dc/attachment.html new file mode 100644 index 000000000..153d40d14 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e5c608dc/attachment.html @@ -0,0 +1,76 @@ +<!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>[204] - fix manifests</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>204</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 02:48:07 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix manifests</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulespuppetmanifestsinitpp">puppet/modules/puppet/manifests/init.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulespuppetmanifestsinitpp">Modified: puppet/modules/puppet/manifests/init.pp</a> +=================================================================== +--- puppet/modules/puppet/manifests/init.pp 2010-11-08 01:47:08 UTC (rev 203) ++++ puppet/modules/puppet/manifests/init.pp 2010-11-08 01:48:07 UTC (rev 204) +@@ -45,7 +45,6 @@ + owner => puppet, + group => puppet, + mode => 700, +- recurse => true + content => template("puppet/tagmail.conf"), + } + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e62c1eb6/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/e62c1eb6/attachment-0001.html new file mode 100644 index 000000000..9c0a42406 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e62c1eb6/attachment-0001.html @@ -0,0 +1,75 @@ +<!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>[200] - fix template here too</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>200</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:48:05 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix template here too</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplatesvhost_ssl_redirectconf">puppet/modules/apache/templates/vhost_ssl_redirect.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplatesvhost_ssl_redirectconf">Modified: puppet/modules/apache/templates/vhost_ssl_redirect.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_ssl_redirect.conf 2010-11-08 00:47:08 UTC (rev 199) ++++ puppet/modules/apache/templates/vhost_ssl_redirect.conf 2010-11-08 00:48:05 UTC (rev 200) +@@ -1,4 +1,4 @@ + <VirtualHost *:80> +- ServerName <%= vhost %> +- Redirect / https://<%= vhost %>/ ++ ServerName <%= name %> ++ Redirect / https://<%= name %>/ + </VirtualHost> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e62c1eb6/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/e62c1eb6/attachment.html new file mode 100644 index 000000000..9c0a42406 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e62c1eb6/attachment.html @@ -0,0 +1,75 @@ +<!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>[200] - fix template here too</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>200</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 01:48:05 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- fix template here too</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplatesvhost_ssl_redirectconf">puppet/modules/apache/templates/vhost_ssl_redirect.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachetemplatesvhost_ssl_redirectconf">Modified: puppet/modules/apache/templates/vhost_ssl_redirect.conf</a> +=================================================================== +--- puppet/modules/apache/templates/vhost_ssl_redirect.conf 2010-11-08 00:47:08 UTC (rev 199) ++++ puppet/modules/apache/templates/vhost_ssl_redirect.conf 2010-11-08 00:48:05 UTC (rev 200) +@@ -1,4 +1,4 @@ + <VirtualHost *:80> +- ServerName <%= vhost %> +- Redirect / https://<%= vhost %>/ ++ ServerName <%= name %> ++ Redirect / https://<%= name %>/ + </VirtualHost> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e8975eb5/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/e8975eb5/attachment-0001.html new file mode 100644 index 000000000..7f30395fd --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e8975eb5/attachment-0001.html @@ -0,0 +1,144 @@ +<!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>[193] - remove tabulation ( so indentation is really fixed )</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>193</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 00:36:49 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove tabulation ( so indentation is really fixed ) +- clean old comments ( ie, things we deployed )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmanifestsnodespp">puppet/manifests/nodes.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmanifestsnodespp">Modified: puppet/manifests/nodes.pp</a> +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-07 23:30:39 UTC (rev 192) ++++ puppet/manifests/nodes.pp 2010-11-07 23:36:49 UTC (rev 193) +@@ -9,7 +9,6 @@ + # - setup restricted shell access to allow "mdvsys submit" to work + # - setup maintainers database (with web interface) + # - mirroring (Nanar) +-# - LDAP master + # + include default_mageia_server + timezone::timezone { "Europe/Paris": } +@@ -40,11 +39,10 @@ + # - mail server + # - mailing list server + # - wiki +-# - pastbin ++# - pastebin + # - LDAP slave +-# - SQL server + # +- include default_mageia_server ++ include default_mageia_server + include bind::bind_master + include postgresql + bind::zone_master { "mageia.org": } +@@ -61,16 +59,16 @@ + node jonund { + # Location: IELO datacenter (marseille) + # +- include default_mageia_server +- include iurt ++ include default_mageia_server ++ include iurt + timezone::timezone { "Europe/Paris": } + } + + node ecosse { + # Location: IELO datacenter (marseille) + # +- include default_mageia_server +- include iurt ++ include default_mageia_server ++ include iurt + timezone::timezone { "Europe/Paris": } + } + +@@ -82,8 +80,8 @@ + # TODO: + # - buy the server + # - install the server in datacenter +-# +- include default_mageia_server ++# - install a backup system ++ include default_mageia_server + } + + # gandi-vm +@@ -94,7 +92,7 @@ + # - secondary MX + # - LDAP slave (for external traffic maybe) + # +- include default_mageia_server ++ include default_mageia_server + include bind::bind_master + bind::zone_master { "mageia.org": } + bind::zone_master { "mageia.fr": } +@@ -110,10 +108,9 @@ + # - setup mageia.org web site + # - setup blog + # +- include default_mageia_server ++ include default_mageia_server + include apache::base + timezone::timezone { "Europe/Paris": } +- #include postfix + include blog + } + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e8975eb5/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/e8975eb5/attachment.html new file mode 100644 index 000000000..7f30395fd --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e8975eb5/attachment.html @@ -0,0 +1,144 @@ +<!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>[193] - remove tabulation ( so indentation is really fixed )</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>193</dd> +<dt>Author</dt> <dd>misc</dd> +<dt>Date</dt> <dd>2010-11-08 00:36:49 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>- remove tabulation ( so indentation is really fixed ) +- clean old comments ( ie, things we deployed )</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmanifestsnodespp">puppet/manifests/nodes.pp</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmanifestsnodespp">Modified: puppet/manifests/nodes.pp</a> +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-07 23:30:39 UTC (rev 192) ++++ puppet/manifests/nodes.pp 2010-11-07 23:36:49 UTC (rev 193) +@@ -9,7 +9,6 @@ + # - setup restricted shell access to allow "mdvsys submit" to work + # - setup maintainers database (with web interface) + # - mirroring (Nanar) +-# - LDAP master + # + include default_mageia_server + timezone::timezone { "Europe/Paris": } +@@ -40,11 +39,10 @@ + # - mail server + # - mailing list server + # - wiki +-# - pastbin ++# - pastebin + # - LDAP slave +-# - SQL server + # +- include default_mageia_server ++ include default_mageia_server + include bind::bind_master + include postgresql + bind::zone_master { "mageia.org": } +@@ -61,16 +59,16 @@ + node jonund { + # Location: IELO datacenter (marseille) + # +- include default_mageia_server +- include iurt ++ include default_mageia_server ++ include iurt + timezone::timezone { "Europe/Paris": } + } + + node ecosse { + # Location: IELO datacenter (marseille) + # +- include default_mageia_server +- include iurt ++ include default_mageia_server ++ include iurt + timezone::timezone { "Europe/Paris": } + } + +@@ -82,8 +80,8 @@ + # TODO: + # - buy the server + # - install the server in datacenter +-# +- include default_mageia_server ++# - install a backup system ++ include default_mageia_server + } + + # gandi-vm +@@ -94,7 +92,7 @@ + # - secondary MX + # - LDAP slave (for external traffic maybe) + # +- include default_mageia_server ++ include default_mageia_server + include bind::bind_master + bind::zone_master { "mageia.org": } + bind::zone_master { "mageia.fr": } +@@ -110,10 +108,9 @@ + # - setup mageia.org web site + # - setup blog + # +- include default_mageia_server ++ include default_mageia_server + include apache::base + timezone::timezone { "Europe/Paris": } +- #include postfix + include blog + } + + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e9a1a8be/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/e9a1a8be/attachment-0001.html new file mode 100644 index 000000000..3db12b46c --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e9a1a8be/attachment-0001.html @@ -0,0 +1,86 @@ +<!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>[120] style update</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>120</dd> +<dt>Author</dt> <dd>rda</dd> +<dt>Date</dt> <dd>2010-11-08 16:23:02 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>style update</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbranchesliverootstaticstylettsitecss">identity/CatDap/branches/live/root/static/style/ttsite.css</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbranchesliverootstaticstylettsitecss">Modified: identity/CatDap/branches/live/root/static/style/ttsite.css</a> +=================================================================== +--- identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:00:25 UTC (rev 119) ++++ identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:23:02 UTC (rev 120) +@@ -9,6 +9,8 @@ + background: #fff; + } + ++#hd, #ft, #nav, #content, .inside { padding: 1em; } ++ + .message { + color: #000; + } +@@ -22,8 +24,6 @@ + */ + .hnav + { +- border-bottom: solid 0px #fff; +- text-align: center; + } + .hnav, .hnav ul li a + { + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/e9a1a8be/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/e9a1a8be/attachment.html new file mode 100644 index 000000000..3db12b46c --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/e9a1a8be/attachment.html @@ -0,0 +1,86 @@ +<!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>[120] style update</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>120</dd> +<dt>Author</dt> <dd>rda</dd> +<dt>Date</dt> <dd>2010-11-08 16:23:02 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>style update</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbranchesliverootstaticstylettsitecss">identity/CatDap/branches/live/root/static/style/ttsite.css</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbranchesliverootstaticstylettsitecss">Modified: identity/CatDap/branches/live/root/static/style/ttsite.css</a> +=================================================================== +--- identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:00:25 UTC (rev 119) ++++ identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:23:02 UTC (rev 120) +@@ -9,6 +9,8 @@ + background: #fff; + } + ++#hd, #ft, #nav, #content, .inside { padding: 1em; } ++ + .message { + color: #000; + } +@@ -22,8 +24,6 @@ + */ + .hnav + { +- border-bottom: solid 0px #fff; +- text-align: center; + } + .hnav, .hnav ul li a + { + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/ee080b54/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/ee080b54/attachment-0001.html new file mode 100644 index 000000000..5b4ce72e0 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/ee080b54/attachment-0001.html @@ -0,0 +1,92 @@ +<!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>[121] style update</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>121</dd> +<dt>Author</dt> <dd>rda</dd> +<dt>Date</dt> <dd>2010-11-08 16:30:29 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>style update</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbranchesliverootstaticstylettsitecss">identity/CatDap/branches/live/root/static/style/ttsite.css</a></li> +<li><a href="#identityCatDapbranchesliveroottemplatelayout">identity/CatDap/branches/live/root/template/layout</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbranchesliverootstaticstylettsitecss">Modified: identity/CatDap/branches/live/root/static/style/ttsite.css</a> +=================================================================== +--- identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:23:02 UTC (rev 120) ++++ identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:30:29 UTC (rev 121) +@@ -9,7 +9,7 @@ + background: #fff; + } + +-#hd, #ft, #nav, #content, .inside { padding: 1em; } ++#hd, #ft, #nav, #content, .inside { padding: 0 1em 0.5em 0; } + + .message { + color: #000; + +<a id="identityCatDapbranchesliveroottemplatelayout">Modified: identity/CatDap/branches/live/root/template/layout</a> +=================================================================== +--- identity/CatDap/branches/live/root/template/layout 2010-11-08 15:23:02 UTC (rev 120) ++++ identity/CatDap/branches/live/root/template/layout 2010-11-08 15:30:29 UTC (rev 121) +@@ -9,7 +9,7 @@ + <li><a href="[% c.uri_for(subpage.page) %]">[% l(subpage.title) %]</a></li> + [% END %] + </ul> +- ++ + <div class="inside"> + [% IF errors %] + <span class="error"> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/ee080b54/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/ee080b54/attachment.html new file mode 100644 index 000000000..5b4ce72e0 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/ee080b54/attachment.html @@ -0,0 +1,92 @@ +<!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>[121] style update</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>121</dd> +<dt>Author</dt> <dd>rda</dd> +<dt>Date</dt> <dd>2010-11-08 16:30:29 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>style update</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#identityCatDapbranchesliverootstaticstylettsitecss">identity/CatDap/branches/live/root/static/style/ttsite.css</a></li> +<li><a href="#identityCatDapbranchesliveroottemplatelayout">identity/CatDap/branches/live/root/template/layout</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="identityCatDapbranchesliverootstaticstylettsitecss">Modified: identity/CatDap/branches/live/root/static/style/ttsite.css</a> +=================================================================== +--- identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:23:02 UTC (rev 120) ++++ identity/CatDap/branches/live/root/static/style/ttsite.css 2010-11-08 15:30:29 UTC (rev 121) +@@ -9,7 +9,7 @@ + background: #fff; + } + +-#hd, #ft, #nav, #content, .inside { padding: 1em; } ++#hd, #ft, #nav, #content, .inside { padding: 0 1em 0.5em 0; } + + .message { + color: #000; + +<a id="identityCatDapbranchesliveroottemplatelayout">Modified: identity/CatDap/branches/live/root/template/layout</a> +=================================================================== +--- identity/CatDap/branches/live/root/template/layout 2010-11-08 15:23:02 UTC (rev 120) ++++ identity/CatDap/branches/live/root/template/layout 2010-11-08 15:30:29 UTC (rev 121) +@@ -9,7 +9,7 @@ + <li><a href="[% c.uri_for(subpage.page) %]">[% l(subpage.title) %]</a></li> + [% END %] + </ul> +- ++ + <div class="inside"> + [% IF errors %] + <span class="error"> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/fa4ce81d/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20101108/fa4ce81d/attachment-0001.html new file mode 100644 index 000000000..b9480ff86 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/fa4ce81d/attachment-0001.html @@ -0,0 +1,161 @@ +<!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>[207] add default vhost with redirection to www.mageia.org</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>207</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-08 14:13:13 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add default vhost with redirection to www.mageia.org</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplates00_default_vhostsconf">puppet/modules/apache/templates/00_default_vhosts.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-08 10:36:35 UTC (rev 206) ++++ puppet/modules/apache/manifests/init.pp 2010-11-08 13:13:13 UTC (rev 207) +@@ -22,6 +22,16 @@ + group => root, + mode => 644, + } ++ ++ file { "00_default_vhosts.conf": ++ path => "/etc/httpd/conf/vhosts.d/00_default_vhosts.conf", ++ ensure => "present", ++ owner => root, ++ group => root, ++ mode => 644, ++ notify => Service['apache'], ++ content => template("apache/00_default_vhosts.conf") ++ } + } + + class mod_php inherits base { + +<a id="puppetmodulesapachetemplates00_default_vhostsconf">Added: puppet/modules/apache/templates/00_default_vhosts.conf</a> +=================================================================== +--- puppet/modules/apache/templates/00_default_vhosts.conf (rev 0) ++++ puppet/modules/apache/templates/00_default_vhosts.conf 2010-11-08 13:13:13 UTC (rev 207) +@@ -0,0 +1,65 @@ ++# $Id: 00_default_vhosts.conf 250119 2008-07-26 14:51:31Z oden $ ++# $HeadURL: svn+ssh://svn.mandriva.com/svn/packages/cooker/apache-conf/current/SOURCES/00_default_vhosts.conf $ ++# This is an example VirtualHosts configuration. ++# ++# Since Apache 1.3.19, we modified the setup to include some nice tricks: ++# ++# - We added the User and Group directives so VirtualHosts now work with ++# suexec directive. If set, Apache will run all cgi scripts under that ++# user and group (provided the uid and gid are > 100 for security). The ++# directories and cgi files *must* belong to that user/group for the ++# feature to work ++# ++# - We added the Setenv VLOG directive. This works in conjunction with ++# the CustomLog in common.conf. When Setenv VLOG is set, apache will ++# create a /var/log/httpd/VLOG-YYYY-MM-<ServerName>.log instead of logging ++# to access_log. Use this instead of defining a special logfile for ++# each vhost, otherwise you eat up file descriptors. ++# ++# - You can also specify a path for the VLOG for each Vhost, for example, ++# to place the logs in each user's directory. However, if you want to ++# use the file for accounting, place it in a directory owned by root, ++# otherwise the user will be able to erase it. ++# ++# - I suggest only including the ErrorLog *only* if the vhost will use ++# cgi scripts. Again, it saves file descriptors! ++ ++ ++################# IP-based Virtual Hosts ++# <VirtualHost 192.168.2.100> ++# User jmdault ++# Group jmdault ++# DocumentRoot /home/jmdault/public_html ++# ServerName test2.com ++# Setenv VLOG /home/jmdault/logs ++# ErrorLogs /home/jmdault/test2-error_log ++# </VirtualHost> ++ ++################# Named VirtualHosts ++# NameVirtualHost 111.222.33.44 ++# <VirtualHost 111.222.33.44> ++# ServerName www.domain.tld ++# ServerPath /domain ++# DocumentRoot /web/domain ++# </VirtualHost> ++ ++#<VirtualHost alice.com> ++# ServerName alice.com ++# # normal vhost configs ++# <IfModule peruser.c> ++# # this must match a Processor line ++# ServerEnvironment alice users /home/alice ++# ++# # these are optional - defaults to the values specified above ++# MinSpareProcessors 4 ++# MaxProcessors 20 ++# </IfModule> ++#</VirtualHost> ++ ++<VirtualHost *:80> ++ DocumentRoot /var/www/html ++ <Location /> ++ Allow from all ++ </Location> ++ Redirect / http://www.mageia.org/ ++</VirtualHost> + +</pre></div> + +</body> +</html>
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20101108/fa4ce81d/attachment.html b/zarb-ml/mageia-sysadm/attachments/20101108/fa4ce81d/attachment.html new file mode 100644 index 000000000..b9480ff86 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20101108/fa4ce81d/attachment.html @@ -0,0 +1,161 @@ +<!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>[207] add default vhost with redirection to www.mageia.org</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>207</dd> +<dt>Author</dt> <dd>boklm</dd> +<dt>Date</dt> <dd>2010-11-08 14:13:13 +0100 (Mon, 08 Nov 2010)</dd> +</dl> + +<h3>Log Message</h3> +<pre>add default vhost with redirection to www.mageia.org</pre> + +<h3>Modified Paths</h3> +<ul> +<li><a href="#puppetmodulesapachemanifestsinitpp">puppet/modules/apache/manifests/init.pp</a></li> +</ul> + +<h3>Added Paths</h3> +<ul> +<li><a href="#puppetmodulesapachetemplates00_default_vhostsconf">puppet/modules/apache/templates/00_default_vhosts.conf</a></li> +</ul> + +</div> +<div id="patch"><pre> +<a id="puppetmodulesapachemanifestsinitpp">Modified: puppet/modules/apache/manifests/init.pp</a> +=================================================================== +--- puppet/modules/apache/manifests/init.pp 2010-11-08 10:36:35 UTC (rev 206) ++++ puppet/modules/apache/manifests/init.pp 2010-11-08 13:13:13 UTC (rev 207) +@@ -22,6 +22,16 @@ + group => root, + mode => 644, + } ++ ++ file { "00_default_vhosts.conf": ++ path => "/etc/httpd/conf/vhosts.d/00_default_vhosts.conf", ++ ensure => "present", ++ owner => root, ++ group => root, ++ mode => 644, ++ notify => Service['apache'], ++ content => template("apache/00_default_vhosts.conf") ++ } + } + + class mod_php inherits base { + +<a id="puppetmodulesapachetemplates00_default_vhostsconf">Added: puppet/modules/apache/templates/00_default_vhosts.conf</a> +=================================================================== +--- puppet/modules/apache/templates/00_default_vhosts.conf (rev 0) ++++ puppet/modules/apache/templates/00_default_vhosts.conf 2010-11-08 13:13:13 UTC (rev 207) +@@ -0,0 +1,65 @@ ++# $Id: 00_default_vhosts.conf 250119 2008-07-26 14:51:31Z oden $ ++# $HeadURL: svn+ssh://svn.mandriva.com/svn/packages/cooker/apache-conf/current/SOURCES/00_default_vhosts.conf $ ++# This is an example VirtualHosts configuration. ++# ++# Since Apache 1.3.19, we modified the setup to include some nice tricks: ++# ++# - We added the User and Group directives so VirtualHosts now work with ++# suexec directive. If set, Apache will run all cgi scripts under that ++# user and group (provided the uid and gid are > 100 for security). The ++# directories and cgi files *must* belong to that user/group for the ++# feature to work ++# ++# - We added the Setenv VLOG directive. This works in conjunction with ++# the CustomLog in common.conf. When Setenv VLOG is set, apache will ++# create a /var/log/httpd/VLOG-YYYY-MM-<ServerName>.log instead of logging ++# to access_log. Use this instead of defining a special logfile for ++# each vhost, otherwise you eat up file descriptors. ++# ++# - You can also specify a path for the VLOG for each Vhost, for example, ++# to place the logs in each user's directory. However, if you want to ++# use the file for accounting, place it in a directory owned by root, ++# otherwise the user will be able to erase it. ++# ++# - I suggest only including the ErrorLog *only* if the vhost will use ++# cgi scripts. Again, it saves file descriptors! ++ ++ ++################# IP-based Virtual Hosts ++# <VirtualHost 192.168.2.100> ++# User jmdault ++# Group jmdault ++# DocumentRoot /home/jmdault/public_html ++# ServerName test2.com ++# Setenv VLOG /home/jmdault/logs ++# ErrorLogs /home/jmdault/test2-error_log ++# </VirtualHost> ++ ++################# Named VirtualHosts ++# NameVirtualHost 111.222.33.44 ++# <VirtualHost 111.222.33.44> ++# ServerName www.domain.tld ++# ServerPath /domain ++# DocumentRoot /web/domain ++# </VirtualHost> ++ ++#<VirtualHost alice.com> ++# ServerName alice.com ++# # normal vhost configs ++# <IfModule peruser.c> ++# # this must match a Processor line ++# ServerEnvironment alice users /home/alice ++# ++# # these are optional - defaults to the values specified above ++# MinSpareProcessors 4 ++# MaxProcessors 20 ++# </IfModule> ++#</VirtualHost> ++ ++<VirtualHost *:80> ++ DocumentRoot /var/www/html ++ <Location /> ++ Allow from all ++ </Location> ++ Redirect / http://www.mageia.org/ ++</VirtualHost> + +</pre></div> + +</body> +</html>
\ No newline at end of file |