/[adm]/puppet/manifests/nodes.pp
ViewVC logotype

Contents of /puppet/manifests/nodes.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 49 - (show annotations) (download)
Thu Oct 28 14:32:39 2010 UTC (13 years, 5 months ago) by boklm
File size: 2535 byte(s)
add list of things to setup
1 # svn, big important server
2 node valstar {
3 # Location: IELO datacenter (marseille)
4 #
5 # TODO:
6 # - SVN server
7 # - GIT server
8 # - setup urli build scheduler
9 # - setup youri
10 # - setup restricted shell access to allow "mdvsys submit" to work
11 # - setup maintainers database (with web interface)
12 # - mirroring (Nanar)
13 # - LDAP master
14 #
15 include default_mageia_server
16 timezone::timezone { "Europe/Paris": }
17 include rsyncd
18 include mirror
19
20 # for puppet svn checkout
21 package {"subversion":
22 ensure => "installed"
23 }
24
25 # svn spam log with
26 # Oct 26 13:30:01 valstar svn: No worthy mechs found
27 # without it, source http://mail-index.netbsd.org/pkgsrc-users/2008/11/23/msg008706.html
28 #
29 package {"lib64sasl2-plug-anonymous":
30 ensure => "installed"
31 }
32
33 # update the puppet snapshot
34 cron { puppet_update:
35 command => "cd /etc/puppet && /usr/bin/svn update -q",
36 user => root,
37 minute => '*/5'
38 }
39
40 exec { puppet_etc:
41 cwd => "/etc/",
42 command => "/usr/bin/svn co svn://vm-gandi.mageia.org/adm/puppet/",
43 user => "root",
44 creates => "/etc/puppet/manifests/site.pp"
45 }
46
47 package {"puppet-server":
48 ensure => "installed"
49 }
50 }
51
52 # web apps
53 node alamut {
54 # Location: IELO datacenter (marseille)
55 #
56 # TODO:
57 # - bugzilla
58 # - nagios
59 # - api
60 # - mail server
61 # - mailing list server
62 # - wiki
63 # - pastbin
64 # - LDAP slave
65 #
66 include default_mageia_server
67 include bind::bind_master
68 bind::zone_master { "mageia.org": }
69 bind::zone_master { "mageia.fr": }
70 timezone::timezone { "Europe/Paris": }
71 }
72
73 # buildnode
74 node jonund {
75 # Location: IELO datacenter (marseille)
76 #
77 # TODO:
78 # - iurt
79 #
80 include default_mageia_server
81 timezone::timezone { "Europe/Paris": }
82 }
83
84 node ecosse {
85 # Location: IELO datacenter (marseille)
86 #
87 # TODO:
88 # - iurt
89 #
90 include default_mageia_server
91 timezone::timezone { "Europe/Paris": }
92 }
93
94
95 # backup server
96 node fiona {
97 # Location: IELO datacenter (marseille)
98 #
99 # TODO:
100 # - buy the server
101 # - install the server in datacenter
102 #
103 include default_mageia_server
104 }
105
106 # gandi-vm
107 node krampouezh {
108 # Location: gandi VM
109 #
110 # TODO:
111 # - secondary MX
112 # - LDAP slave (for external traffic maybe)
113 #
114 include default_mageia_server
115 include bind::bind_slave
116 timezone::timezone { "Europe/Paris": }
117 # Other services running on this server :
118 # - meetbot
119 }
120
121 node champagne {
122 # Location: gandi VM
123 #
124 # TODO:
125 # - setup mageia.org web site
126 # - setup blog
127 #
128 include default_mageia_server
129 }
130
131

  ViewVC Help
Powered by ViewVC 1.1.30