summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-sysadm/2010-November/000194.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-sysadm/2010-November/000194.html')
-rw-r--r--zarb-ml/mageia-sysadm/2010-November/000194.html183
1 files changed, 183 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2010-November/000194.html b/zarb-ml/mageia-sysadm/2010-November/000194.html
new file mode 100644
index 000000000..997fb8d37
--- /dev/null
+++ b/zarb-ml/mageia-sysadm/2010-November/000194.html
@@ -0,0 +1,183 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-sysadm] [86] Configure iurt on bs nodes and install conf files
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B86%5D%20Configure%20iurt%20on%20bs%20nodes%20and%20install%20conf%0A%09files&In-Reply-To=%3C20101104163459.8921D2B235%40krampouezh.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000193.html">
+ <LINK REL="Next" HREF="000195.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-sysadm] [86] Configure iurt on bs nodes and install conf files</H1>
+ <B>root at mageia.org</B>
+ <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B86%5D%20Configure%20iurt%20on%20bs%20nodes%20and%20install%20conf%0A%09files&In-Reply-To=%3C20101104163459.8921D2B235%40krampouezh.mageia.org%3E"
+ TITLE="[Mageia-sysadm] [86] Configure iurt on bs nodes and install conf files">root at mageia.org
+ </A><BR>
+ <I>Thu Nov 4 17:34:59 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000193.html">[Mageia-sysadm] [85] - not needed directly in the node, will be pulled by application
+</A></li>
+ <LI>Next message: <A HREF="000195.html">[Mageia-sysadm] [86] Configure iurt on bs nodes and install conf files
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#194">[ date ]</a>
+ <a href="thread.html#194">[ thread ]</a>
+ <a href="subject.html#194">[ subject ]</a>
+ <a href="author.html#194">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Revision: 86
+Author: dmorgan
+Date: 2010-11-04 17:34:59 +0100 (Thu, 04 Nov 2010)
+Log Message:
+-----------
+Configure iurt on bs nodes and install conf files
+
+Modified Paths:
+--------------
+ puppet/manifests/common.pp
+ puppet/manifests/nodes.pp
+
+Added Paths:
+-----------
+ puppet/modules/iurt/
+ puppet/modules/iurt/manifests/
+ puppet/modules/iurt/manifests/init.pp
+ puppet/modules/iurt/templates/
+ puppet/modules/iurt/templates/.iurt.cauldron.conf
+
+Modified: puppet/manifests/common.pp
+===================================================================
+--- puppet/manifests/common.pp 2010-11-04 15:54:00 UTC (rev 85)
++++ puppet/manifests/common.pp 2010-11-04 16:34:59 UTC (rev 86)
+@@ -92,13 +92,3 @@
+ include urpmi_update
+ }
+
+-class default_mageia_buildnode {
+- # build node common settings
+-
+- # we could have the following skip list to use less space:
+- # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/'
+- $package_list = ['task-bs-cluster-chroot', 'iurt']
+- package { $package_list:
+- ensure =&gt; installed;
+- }
+-}
+
+Modified: puppet/manifests/nodes.pp
+===================================================================
+--- puppet/manifests/nodes.pp 2010-11-04 15:54:00 UTC (rev 85)
++++ puppet/manifests/nodes.pp 2010-11-04 16:34:59 UTC (rev 86)
+@@ -83,7 +83,7 @@
+ # Location: IELO datacenter (marseille)
+ #
+ include default_mageia_server
+- include default_mageia_buildnode
++ include iurt
+ timezone::timezone { &quot;Europe/Paris&quot;: }
+ }
+
+@@ -91,7 +91,7 @@
+ # Location: IELO datacenter (marseille)
+ #
+ include default_mageia_server
+- include default_mageia_buildnode
++ include iurt
+ timezone::timezone { &quot;Europe/Paris&quot;: }
+ }
+
+
+Added: puppet/modules/iurt/manifests/init.pp
+===================================================================
+--- puppet/modules/iurt/manifests/init.pp (rev 0)
++++ puppet/modules/iurt/manifests/init.pp 2010-11-04 16:34:59 UTC (rev 86)
+@@ -0,0 +1,21 @@
++class default_mageia_buildnode {
++
++ # build node common settings
++ # we could have the following skip list to use less space:
++ # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/'
++ $package_list = ['task-bs-cluster-chroot', 'iurt']
++ package { $package_list:
++ ensure =&gt; installed;
++ }
++
++ file { '/home/buildbot/.iurt.cauldron.conf':
++ ensure =&gt; present,
++ owner =&gt; buildbot,
++ group =&gt; buildbot,
++ mode =&gt; 644,
++ require =&gt; Package[&quot;iurt&quot;],
++ content =&gt; &quot;template(&quot;buildsystem/.iurt.cauldron.conf&quot;)&quot;
++ }
++
++}
++
+
+Added: puppet/modules/iurt/templates/.iurt.cauldron.conf
+===================================================================
+--- puppet/modules/iurt/templates/.iurt.cauldron.conf (rev 0)
++++ puppet/modules/iurt/templates/.iurt.cauldron.conf 2010-11-04 16:34:59 UTC (rev 86)
+@@ -0,0 +1,30 @@
++{
++ supported_arch =&gt; [ 'i586', 'x86_64' ],
++ all_media =&gt; { 'main' =&gt; [ 'release' ], 'contrib' =&gt; [ 'release' ] },
++ upload =&gt; '<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">schedbot at pkgsubmit</A>:~/uploads/',
++ upload_queue =&gt; '<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">schedbot at pkgsubmit</A>:~/uploads/queue/',
++ unwanted_packages =&gt; '^monotone-',
++ repository =&gt; '/mnt/BIG/dis/',
++ rsync_to =&gt; '<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">schedbot at pkgsubmit</A>:/mnt/BIG/dis/uploads/build/',
++ log_url =&gt; '<A HREF="http://pkgsubmit.mageia.org/queue/build/">http://pkgsubmit.mageia.org/queue/build/</A>',
++ admin =&gt; '<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">mageia-sysadm at mageia.org</A>',
++ iurt_root_command =&gt; '/home/buildbot/iurt-trunk/iurt_root_command',
++ packager =&gt; 'Iurt the rebuild bot &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">mageia-sysadm at mageia.org</A>&gt;',
++ sendmail =&gt; 0,
++ build_timeout =&gt; {
++ 'default' =&gt; 18000,
++ 'gcc' =&gt; 57600,
++ 'paraview' =&gt; 115200,
++ 'salome' =&gt; 57600,
++ 'itk' =&gt; 115200,
++ 'wrapitk' =&gt; 115200,
++ 'kernel-rt' =&gt; 57600,
++ 'kernel-xen' =&gt; 57600,
++ 'kernel-tmb' =&gt; 57600,
++ 'openoffice.org' =&gt; 345600,
++ 'openoffice.org64' =&gt; 345600,
++ 'openoffice.org-go-ooo' =&gt; 345600,
++ 'openoffice.org64-go-ooo' =&gt; 345600
++ },
++}
++
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-sysadm/attachments/20101104/03b1fd43/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000193.html">[Mageia-sysadm] [85] - not needed directly in the node, will be pulled by application
+</A></li>
+ <LI>Next message: <A HREF="000195.html">[Mageia-sysadm] [86] Configure iurt on bs nodes and install conf files
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#194">[ date ]</a>
+ <a href="thread.html#194">[ thread ]</a>
+ <a href="subject.html#194">[ subject ]</a>
+ <a href="author.html#194">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
+mailing list</a><br>
+</body></html>