diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/2010-November/000411.html')
-rw-r--r-- | zarb-ml/mageia-sysadm/2010-November/000411.html | 192 |
1 files changed, 192 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2010-November/000411.html b/zarb-ml/mageia-sysadm/2010-November/000411.html new file mode 100644 index 000000000..015141ad7 --- /dev/null +++ b/zarb-ml/mageia-sysadm/2010-November/000411.html @@ -0,0 +1,192 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-sysadm] [213] - rename iurt to buildsystem + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B213%5D%20-%20rename%20iurt%20to%20buildsystem&In-Reply-To=%3C20101109150112.EA4033FC19%40valstar.mageia.org%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="000405.html"> + <LINK REL="Next" HREF="000417.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-sysadm] [213] - rename iurt to buildsystem</H1> + <B>root at mageia.org</B> + <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B213%5D%20-%20rename%20iurt%20to%20buildsystem&In-Reply-To=%3C20101109150112.EA4033FC19%40valstar.mageia.org%3E" + TITLE="[Mageia-sysadm] [213] - rename iurt to buildsystem">root at mageia.org + </A><BR> + <I>Tue Nov 9 16:01:12 CET 2010</I> + <P><UL> + <LI>Previous message: <A HREF="000405.html">[Mageia-sysadm] [212] Close more anon access, and open up read access to some inetOrgPerson attrs to users +</A></li> + <LI>Next message: <A HREF="000417.html">[Mageia-sysadm] [214] Remove the secret key from the file ( even if this is not the one used ) +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#411">[ date ]</a> + <a href="thread.html#411">[ thread ]</a> + <a href="subject.html#411">[ subject ]</a> + <a href="author.html#411">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Revision: 213 +Author: misc +Date: 2010-11-09 16:01:12 +0100 (Tue, 09 Nov 2010) +Log Message: +----------- +- rename iurt to buildsystem + +Modified Paths: +-------------- + puppet/manifests/nodes.pp + puppet/modules/buildsystem/manifests/init.pp + +Added Paths: +----------- + puppet/modules/buildsystem/ + +Removed Paths: +------------- + puppet/modules/iurt/ + +Modified: puppet/manifests/nodes.pp +=================================================================== +--- puppet/manifests/nodes.pp 2010-11-09 14:25:10 UTC (rev 212) ++++ puppet/manifests/nodes.pp 2010-11-09 15:01:12 UTC (rev 213) +@@ -60,7 +60,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- #include iurt ++ #include buildsystem::buildnode + timezone::timezone { "Europe/Paris": } + } + +@@ -68,7 +68,7 @@ + # Location: IELO datacenter (marseille) + # + include default_mageia_server +- include iurt ++ include buildsystem::buildnode + timezone::timezone { "Europe/Paris": } + } + + +Modified: puppet/modules/buildsystem/manifests/init.pp +=================================================================== +--- puppet/modules/iurt/manifests/init.pp 2010-11-09 14:25:10 UTC (rev 212) ++++ puppet/modules/buildsystem/manifests/init.pp 2010-11-09 15:01:12 UTC (rev 213) +@@ -1,20 +1,38 @@ +-class iurt { ++class buildsystem { + +- # build node common settings +- # we could have the following skip list to use less space: +- # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/' +- $package_list = ['task-bs-cluster-chroot', 'iurt'] +- package { $package_list: +- ensure => installed; ++ class buildnode { ++ include iurt + } + +- file { '/home/buildbot/.iurt.cauldron.conf': +- ensure => present, +- owner => buildbot, +- group => buildbot, +- mode => 644, +- content => template("iurt/iurt.cauldron.conf") ++ class iurt { ++ ++ $home_dir = "/home/buildbot/" ++ $build_login = "buildbot" ++ # build node common settings ++ # we could have the following skip list to use less space: ++ # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/' ++ $package_list = ['task-bs-cluster-chroot', 'iurt'] ++ package { $package_list: ++ ensure => installed; ++ } ++ ++ file { "$home_dir/.iurt.cauldron.conf": ++ ensure => present, ++ owner => $build_login, ++ group => $build_login, ++ mode => 644, ++ content => template("iurt/iurt.cauldron.conf") ++ } ++ ++ group {"$build_login": ++ ensure => present, ++ } ++ ++ user {"$build_login": ++ ensure => present, ++ comment => "System user use to run build bots" ++ managehome => true, ++ shell => "/bin/bash", ++ } + } +- + } +- +-------------- next part -------------- +An HTML attachment was scrubbed... +URL: </pipermail/mageia-sysadm/attachments/20101109/572273c3/attachment.html> +</PRE> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000405.html">[Mageia-sysadm] [212] Close more anon access, and open up read access to some inetOrgPerson attrs to users +</A></li> + <LI>Next message: <A HREF="000417.html">[Mageia-sysadm] [214] Remove the secret key from the file ( even if this is not the one used ) +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#411">[ date ]</a> + <a href="thread.html#411">[ thread ]</a> + <a href="subject.html#411">[ subject ]</a> + <a href="author.html#411">[ 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> |