aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/mga_buildsystem/manifests/config.pp
blob: de2951470ba8d6264d9f8ab90f94c631c3e1c791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
class mga_buildsystem::config {
    class { 'buildsystem::var::signbot':
        keyid    => '80420F66',
        keyemail => "packages@${::domain}",
        keyname  => 'Mageia Packages',
    }

    class { 'buildsystem::var::groups':
        packagers            => 'mga-packagers',
        packagers_committers => 'mga-packagers-committers',
    }

    class { 'buildsystem::var::webstatus' :
        package_commit_url => "https://svnweb.${::domain}/packages?view=revision&revision=%d",
        theme_name         => 'mageia',
    }

    class { 'buildsystem::var::iurt':
        timeout_multiplier => $::architecture ? {
          /arm/ => 4,
          'aarch64' => 2,
          default => 1,
        }
    }

    class { 'buildsystem::var::scheduler' :
        admin_mail          => "sysadmin@group.${::domain}",
        build_nodes         => {
            'i586'   => [ 'ecosse0', 'rabbit0', 'ec2x1-a', 'ec2x2-a', 'ecosse1', 'rabbit1', 'ec2x1-b', 'rabbit2', 'ec2x2-b' ],
            'x86_64' => [ 'rabbit0', 'ecosse0', 'ec2x1-a', 'ec2x2-a', 'rabbit1', 'ecosse1', 'ec2x1-b', 'rabbit2', 'ec2x2-b' ],
            'armv7hl' => [ 'ec2aa1-a', 'ec2aa2-a', 'ec2aa3-a', 'ec2aa1-b', 'ec2aa2-b', 'ec2aa3-b' ],
            'aarch64' => [ 'ec2aa1-a', 'ec2aa2-a', 'ec2aa3-a', 'ec2aa1-b', 'ec2aa2-b', 'ec2aa3-b' ],
        },
        build_nodes_aliases => {
            'ecosse0' => "ecosse.${::domain}",
            'ecosse1' => "ecosse.${::domain}",
            'rabbit0' => "rabbit.${::domain}",
            'rabbit1' => "rabbit.${::domain}",
            'ec2aa1-a' => "ec2aa1.${::domain}",
            'ec2aa1-b' => "ec2aa1.${::domain}",
            'ec2aa2-a' => "ec2aa2.${::domain}",
            'ec2aa2-b' => "ec2aa2.${::domain}",
            'ec2aa3-a' => "ec2aa3.${::domain}",
            'ec2aa3-b' => "ec2aa3.${::domain}",
            'ec2x1-a' => "ec2x1.${::domain}",
            'ec2x1-b' => "ec2x1.${::domain}",
            'ec2x2-a' => "ec2x2.${::domain}",
            'ec2x2-b' => "ec2x2.${::domain}",
        },
        build_src_node      => 'duvel',
    }
    include buildsystem::var::repository
    class { 'buildsystem::var::binrepo':
        uploadmail_from => "root@${::domain}",
        uploadmail_to   => "packages-commits@ml.${::domain}",
    }

    $svn_hostname = "svn.${::domain}"
    $svn_root_packages = "svn://${svn_hostname}/svn/packages"
    $svn_root_packages_ssh = "svn+ssh://${svn_hostname}/svn/packages"
    class { 'buildsystem::var::mgarepo':
        submit_host           => "pkgsubmit.${::domain}",
        svn_hostname          => $svn_hostname,
        svn_root_packages     => $svn_root_packages,
        svn_root_packages_ssh => $svn_root_packages_ssh,
        oldurl                => "${svn_root_packages_ssh}/misc",
        conf                  => {
            'global' => {
                'ldap-server'       => "ldap.${::domain}",
                'ldap-base'         => "ou=People,${::dc_suffix}",
                'ldap-filterformat' => '(&(objectClass=inetOrgPerson)(uid=$username))',
                'ldap-resultformat' => '$cn <$mail>',
            }
        }
    }

    include stdlib

    $std_arch = ['i586', 'x86_64']
    $arm32_arch = ['armv5tl', 'armv7hl']
    $std_repos = {
        'release' => {
            'media_type'  => [ 'release' ],
            'requires'    => [],
            'order'       => 0,
        },
        'updates' => {
            'media_type'  => [ 'updates' ],
            'updates_for' => 'release',
            'requires'    => [ 'release' ],
            'order'       => 1,
        },
        'updates_testing' => {
            'media_type' => [ 'testing' ],
            'noauto'     => '1',
            'requires'   => [ 'updates' ],
            'order'      => 2,
        },
        'backports' => {
            'media_type' => [ 'backports' ],
            'noauto'     => '1',
            'requires'   => [ 'updates' ],
            'order'      => 3,
        },
        'backports_testing' => {
            'media_type' => [ 'testing' ],
            'noauto'     => '1',
            'requires'   => [ 'backports' ],
            'order'      => 4,
        },
    }
    $std_medias = {
        'core'    => {
            'repos'      => $std_repos,
            'media_type' => [ 'official', 'free' ],
            'order'      => 0,
        },
        'nonfree' => {
            'repos'      => $std_repos,
            'media_type' => [ 'official' ],
            'noauto'     => '1',
            'requires'   => [ 'core' ],
            'order'      => 1,
        },
        'tainted' => {
            'repos'      => $std_repos,
            'media_type' => [ 'official' ],
            'noauto'     => '1',
            'requires'   => [ 'core' ],
            'order'      => 2,
        },
    }
    $std_base_media = [ 'core/release', 'core/updates' ]
    $infra_medias = {
        'infra' => {
            'repos' => {
                'updates' => {
                    'media_type' => [ 'updates' ],
                    'requires'   => [ 'release' ],
                    'order'      => 0,
                },
            },
            'media_type' => [ 'infra' ],
            'requires'   => [ 'core' ],
            'order'      => 0,
        },
    }
    $std_macros = {
        'distsuffix'   => '.mga',
        'distribution' => 'Mageia',
        'vendor'       => 'Mageia.Org',
        '_real_vendor' => 'mageia',
    }
    $repo_allow_from_ips = [
        $::nodes_ipaddr[duvel][ipv6],
        $::nodes_ipaddr[duvel][ipv4],
        $::nodes_ipaddr[ecosse][ipv6],
        $::nodes_ipaddr[ecosse][ipv4],
        $::nodes_ipaddr[fiona][ipv6],
        $::nodes_ipaddr[fiona][ipv4],
        '10.42.0',
        $::nodes_ipaddr[rabbit][ipv4],
        $::nodes_ipaddr[rabbit][ipv6],
        $::nodes_ipaddr[sucuk][ipv4],
        $::nodes_ipaddr[sucuk][ipv6],
        '85.134.55.73',
        $::nodes_ipaddr[neru][ipv4],
        $::nodes_ipaddr[neru][ipv6],
        '2001:bc8:4400:2700::2729',
        '147.75.83.250',
	'2604:1380:2000:f100::1',
	'2a05:d014:e9:2c00::/56',
	'147.75.69.244/30',
	'2604:1380:1001:4900::/127',
        # Will be new neru
        '51.15.220.93',
        '2001:bc8:628:1f00::1',
    ]
    $repo_allow_from_domains = [
        ".${::domain}",
    ]

    # the list of checks, actions, posts for cauldron in youri-upload
    $cauldron_youri_upload_targets = {
        'checks'  => [
            'version',
            'tag',
            'acl',
            'rpmlint',
            'recency',
        ],
        'actions' => [
            'markrelease',
            'sign',
            'install',
            'link',
            'unpack_release_notes',
            'unpack_gfxboot_theme',
            'unpack_meta_task',
            'unpack_installer_images',
            'unpack_installer_images_nonfree',
            'unpack_installer_stage2',
            'unpack_installer_advertising',
            'unpack_installer_rescue',
            'unpack_syslinux',
            'unpack_pci_usb_ids',
            'archive',
            'mail',
            'maintdb',
            'rebuild',
        ],
        'posts'   => [
            'genhdlist2_zstd',
            'createrepo_cauldron',
            'appstream_cauldron',
            'clean_rpmsrate',
            'mirror',
        ],
    }

    # TODO: mga >= 6 should use std config + createrepo, not a different one
    $mga6_youri_upload_targets = {
        'checks'  => [
            'version',
            'tag',
            'acl',
            'rpmlint',
            'recency',
        ],
        'actions' => [
            'sign',
            'install',
            'link',
            'archive',
            'mail',
        ],
        'posts'   => [
            'genhdlist2',
            'createrepo_mga6',
            'appstream_mga6',
            'mirror',
        ],
    }

    $mga7_youri_upload_targets = {
        'checks'  => [
            'version',
            'tag',
            'acl',
            'rpmlint',
            'recency',
        ],
        'actions' => [
            'sign',
            'install',
            'link',
            'archive',
            'mail',
        ],
        'posts'   => [
            'genhdlist2',
            'createrepo_mga7',
            'appstream_mga7',
            'mirror',
        ],
    }

    # the list of checks, actions, posts for infra distros in youri-upload
    $infra_youri_upload_targets = {
        'checks'  => [
            'version',
            'tag',
            'acl',
            'rpmlint',
            'recency',
        ],
        'actions' => [
            'sign',
            'install',
            'link',
            'archive',
        ],
        'posts'   => [
            'genhdlist2',
        ],
    }

    # the list of checks, actions, posts for cauldron in youri-todo
    $cauldron_youri_todo_targets = {
        'checks'  => [
            'source',
            'deps',
            'version',
            'tag',
            'acl',
            'host',
            'rpmlint',
            'recency',
            'queue_recency',
        ],
        'actions' => [
            'send',
            'dependencies',
            'rpminfo',
            'ulri',
        ],
    }

    # the list of checks, actions, posts for stable and infra distros in youri-todo
    $std_youri_todo_targets = {
        'checks'  => [
            'source',
            'version',
            'tag',
            'acl',
            'host',
            'rpmlint',
            'recency',
            'queue_recency',
        ],
        'actions' => [
            'send',
            'dependencies',
            'rpminfo',
            'ulri',
        ],
    }

    # rpmlint check options for stable and cauldron
    $mga_rpmlint = {
        'config'  => '/usr/share/rpmlint/config',
        'path'    => '/usr/bin/rpmlint',
        'results' => [
            'buildprereq-use',
            'no-description-tag',
            'no-summary-tag',
            'non-standard-group',
            'non-xdg-migrated-menu',
            'percent-in-conflicts',
            'percent-in-dependency',
            'percent-in-obsoletes',
            'percent-in-provides',
            'summary-ended-with-dot',
            'unexpanded-macro',
            'unknown-lsb-keyword',
            'malformed-line-in-lsb-comment-block',
            'empty-%postun',
            'empty-%post',
            'invalid-desktopfile',
            'standard-dir-owned-by-package',
            'use-tmp-in-%postun',
            'bogus-variable-use-in-%posttrans',
            'dir-or-file-in-usr-local',
            'dir-or-file-in-tmp',
            'dir-or-file-in-mnt',
            'dir-or-file-in-opt',
            'dir-or-file-in-home',
            'dir-or-file-in-var-local',
            'tmpfiles-conf-in-etc',
            'non-ghost-in-run',
            'non-ghost-in-var-run',
            'non-ghost-in-var-lock',
            'systemd-unit-in-etc',
            'udev-rule-in-etc',
        ],
    }

    # list of users allowed to submit packages when cauldron is frozen
    $cauldron_authorized_users = str_join(group_members('mga-release_managers'), '|')
    $cauldron_version_check = {
        'authorized_sections'   => '^[a-z]+/updates_testing$',
        #'authorized_sections' => 'none_section_authorized',
        #'authorized_packages'   => 'none_package_authorized',
        'authorized_packages'   => 'drak|^(urpmi|perl-(MDK-Common|Gtk3|Glib(-Object-Introspection)?|URPM)|mgaonline|net_monitor|perl_checker|mandi|indexhtml|ldetect(-lst)?|msec|manatools|rpm-(mageia-setup|helper)|(mga-|mageia).*|iurt)$',
        'authorized_arches'     => 'none',
        'authorized_users'      => "^${cauldron_authorized_users}\$",
        'mode'                  => 'normal',
        #'mode'                  => 'version_freeze',
        #'mode'                  => 'freeze',
    }

    # for EOL distributions
    $frozen_version_check = {
        'authorized_packages' => 'none_package_authorized',
        'authorized_sections' => 'none_section_authorized',
        'authorized_arches'   => 'none',
        'mode'                => 'freeze',
    }

    # for supported stable distributions
    $std_version_check = {
        'authorized_packages' => 'none_package_authorized',
        'authorized_sections' => '^(core|nonfree|tainted)/(updates_testing|backports_testing)$',
        'authorized_arches'   => 'none',
        'mode'                => 'freeze',
    }

    $infra_authorized_users = str_join(group_members('mga-sysadmin'), '|')
    $infra_version_check = {
        'authorized_users' => "^${infra_authorized_users}\$",
        'mode'             => 'freeze',
    }

    class { 'buildsystem::var::distros':
        default_distro => 'cauldron',
        repo_allow_from_ips => $repo_allow_from_ips,
        repo_allow_from_domains => $repo_allow_from_domains,
        distros        => {
            'cauldron' => {
                'arch'                => concat($std_arch, ['armv7hl', 'aarch64']),
                'mandatory_arch'      => concat($std_arch, ['aarch64']),
                'no_media_cfg_update' => true,
                'medias'              => $std_medias,
                'base_media'          => $std_base_media,
                'branch'              => 'Devel',
                'version'             => '8',
                'submit_allowed'      => "${svn_root_packages}/cauldron",
                'macros'              => $std_macros,
                'youri'               => {
                    'upload' => {
                        'targets' => $cauldron_youri_upload_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                        },
                    },
                    'todo'   => {
                        'targets' => $cauldron_youri_todo_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                            'version' => $cauldron_version_check,
                        },
                    },
                },
            },

            '6'        => {
                'arch'                => concat($std_arch, $arm32_arch),
                'mandatory_arch'      => $std_arch,
                'no_media_cfg_update' => true,
                'medias'              => $std_medias,
                'base_media'          => $std_base_media,
                'branch'              => 'Official',
                'version'             => '6',
                'submit_allowed'      => "${svn_root_packages}/updates/6",
                'backports_allowed'   => "${svn_root_packages}/backports/6",
                'macros'              => $std_macros,
                'youri'               => {
                    'upload' => {
                        'targets' => $mga6_youri_upload_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                        },
                    },
                    'todo'   => {
                        'targets' => $std_youri_todo_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                            'version' => $frozen_version_check,
                        },
                    },
                },
            },

            '7'        => {
                'arch'                => concat($std_arch, ['armv7hl', 'aarch64']),
                'mandatory_arch'      => concat($std_arch, ['aarch64']),
                'no_media_cfg_update' => true,
                'medias'              => $std_medias,
                'base_media'          => $std_base_media,
                'branch'              => 'Official',
                'version'             => '7',
                'submit_allowed'      => "${svn_root_packages}/updates/7",
                'backports_allowed'   => "${svn_root_packages}/backports/7",
                'macros'              => $std_macros,
                'youri'               => {
                    'upload' => {
                        'targets' => $mga7_youri_upload_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                        },
                    },
                    'todo'   => {
                        'targets' => $std_youri_todo_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                            'version' => $std_version_check,
                        },
                    },
                },
            },

            'infra_6'  => {
                'arch'           => concat($std_arch, $arm32_arch),
                'medias'         => $infra_medias,
                'base_media'     => [ '6/core/release', '6/core/updates', 'infra/updates' ],
                'branch'         => 'Official',
                'version'        => '6',
                'submit_allowed' => "${svn_root_packages}/updates/infra_6",
                'macros'         => $std_macros,
                'based_on'       => {
                    '6' => {
                        'core' => [ 'release', 'updates' ],
                    },
                },
                'youri'          => {
                    'upload' => {
                        'targets' => $infra_youri_upload_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                        },
                    },
                    'todo'   => {
                        'targets' => $std_youri_todo_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                            'version' => $infra_version_check,
                        },
                    },
                },
                'no_mirror'      => true,
            },

            'infra_7'  => {
                'arch'           => concat($std_arch, ['armv7hl', 'aarch64']),
                'medias'         => $infra_medias,
                'base_media'     => [ '7/core/release', '7/core/updates', 'infra/updates' ],
                'branch'         => 'Official',
                'version'        => '7',
                'submit_allowed' => "${svn_root_packages}/updates/infra_7",
                'macros'         => $std_macros,
                'based_on'       => {
                    '7' => {
                        'core' => [ 'release', 'updates' ],
                    },
                },
                'youri'          => {
                    'upload' => {
                        'targets' => $infra_youri_upload_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                        },
                    },
                    'todo'   => {
                        'targets' => $std_youri_todo_targets,
                        'checks'  => {
                            'rpmlint' => $mga_rpmlint,
                            'version' => $infra_version_check,
                        },
                    },
                },
                'no_mirror'      => true,
            },
        }
    }
    $checks_tag_options = {
        'tags' => {
            'release'      => inline_template("^[^~]*<%= std_macros['distsuffix'] %>\\d+"),
            'distribution' => inline_template("^<%= std_macros['distribution'] %>"),
            'vendor'       => inline_template("^<%= std_macros['vendor'] %>$"),
        },
    }
    class { 'buildsystem::var::youri':
        packages_archivedir => "${buildsystem::var::scheduler::homedir}/old",
        youri_conf          => {
            'upload' => {
                'checks'  => {
                    'tag'     => {
                        'options' => $checks_tag_options,
                    },
                    'rpmlint' => {
                        'options' => {
                            'results' => [
                                'buildprereq-use',
                                'no-description-tag',
                                'no-summary-tag',
                                'non-standard-group',
                                'non-xdg-migrated-menu',
                                'percent-in-conflicts',
                                'percent-in-dependency',
                                'percent-in-obsoletes',
                                'percent-in-provides',
                                'summary-ended-with-dot',
                                'unexpanded-macro',
                                'unknown-lsb-keyword',
                                'malformed-line-in-lsb-comment-block',
                                'empty-%postun',
                                'empty-%post',
                                'invalid-desktopfile',
                                'standard-dir-owned-by-package',
                                'use-tmp-in-%postun',
                                'bogus-variable-use-in-%posttrans',
                                'dir-or-file-in-usr-local',
                                'dir-or-file-in-tmp',
                                'dir-or-file-in-mnt',
                                'dir-or-file-in-opt',
                                'dir-or-file-in-home',
                                'dir-or-file-in-var-local',
                            ],
                        },
                    },
                },
                'actions' => {
                    'mail' => {
                        'options' => {
                            'to'       => "changelog@ml.${::domain}",
                            'reply_to' => "dev@ml.${::domain}",
                            'from'     => "buildsystem-daemon@${::domain}",
                            'prefix'   => 'RPM',
                        },
                    },
                },
            },
            'todo'   => {
                'checks' => {
                    'tag' => {
                        'options' => $checks_tag_options,
                    },
                },
            },
        }
    }
}
/span> #: share/meta-task/compssUsers.pl:100 #, c-format msgid "NFS Server, Samba server" msgstr "Servidor NFS, Servidor Samba" #: share/meta-task/compssUsers.pl:103 share/meta-task/compssUsers.pl:116 #, c-format msgid "Database" msgstr "Base de Dados" #: share/meta-task/compssUsers.pl:104 #, c-format msgid "PostgreSQL and MySQL Database Server" msgstr "Servidor de Base de Dados PostgreSQL e MySQL" #: share/meta-task/compssUsers.pl:108 #, c-format msgid "Web/FTP" msgstr "Web/FTP" #: share/meta-task/compssUsers.pl:109 #, c-format msgid "Apache, Pro-ftpd" msgstr "Apache, Pro-ftpd" #: share/meta-task/compssUsers.pl:112 #, c-format msgid "Mail" msgstr "Correio Electrónico" #: share/meta-task/compssUsers.pl:113 #, c-format msgid "Postfix mail server" msgstr "Servidor de correio electrónico Postfix" #: share/meta-task/compssUsers.pl:117 #, c-format msgid "PostgreSQL or MySQL database server" msgstr "Servidor de Base de Dados PostgreSQL ou MySQL" #: share/meta-task/compssUsers.pl:124 #, c-format msgid "Network Computer server" msgstr "Servidor/Computador de Rede" #: share/meta-task/compssUsers.pl:125 #, c-format msgid "NFS server, SMB server, Proxy server, ssh server" msgstr "Servidor NFS, servidor SMB, servidor Proxy, servidor SSH" #: share/meta-task/compssUsers.pl:131 #, c-format msgid "Graphical Environment" msgstr "Ambiente Gráfico" #: share/meta-task/compssUsers.pl:133 #, c-format msgid "KDE Workstation" msgstr "Estação de Trabalho KDE" #: share/meta-task/compssUsers.pl:134 #, c-format msgid "" "The K Desktop Environment, the basic graphical environment with a collection " "of accompanying tools" msgstr "" "O Ecrâ de Trabalho K (KDE), o ambiente gráfico básico com uma colecção de " "ferramentas" #: share/meta-task/compssUsers.pl:138 #, c-format msgid "GNOME Workstation" msgstr "Estação de Trabalho Gnome" #: share/meta-task/compssUsers.pl:139 #, c-format msgid "" "A graphical environment with user-friendly set of applications and desktop " "tools" msgstr "" "Um ambiente gráfico com um conjunto de aplicações amigáveis e ferramentas de " "ecrâ" #: share/meta-task/compssUsers.pl:142 #, c-format msgid "IceWm Desktop" msgstr "Ecrâ IceWm" #: share/meta-task/compssUsers.pl:146 #, c-format msgid "Other Graphical Desktops" msgstr "Outros Ambientes Gráficos" #: share/meta-task/compssUsers.pl:147 #, c-format msgid "Window Maker, Enlightenment, Fvwm, etc" msgstr "Window Maker, Enlightenment, Fvwm, etc" #: share/meta-task/compssUsers.pl:170 #, c-format msgid "Utilities" msgstr "Utilidades" #: share/meta-task/compssUsers.pl:172 share/meta-task/compssUsers.pl:173 #, c-format msgid "SSH Server" msgstr "Servidor SSH" #: share/meta-task/compssUsers.pl:177 #, c-format msgid "Webmin" msgstr "Webmin" #: share/meta-task/compssUsers.pl:178 #, c-format msgid "Webmin Remote Configuration Server" msgstr "Servidor de Configuração Remota Webmin" #: share/meta-task/compssUsers.pl:182 #, c-format msgid "Network Utilities/Monitoring" msgstr "Utilidades da Rede/Monitarização" #: share/meta-task/compssUsers.pl:183 #, c-format msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." msgstr "Ferramentas de monitorização, contagem de processos, tcpdump, nmap, ..." #: share/meta-task/compssUsers.pl:187 #, c-format msgid "Mandriva Wizards" msgstr "Assistentes Mandriva" #: share/meta-task/compssUsers.pl:188 #, c-format msgid "Wizards to configure server" msgstr "Assistentes para configurar o servidor" #: steps.pm:85 #, c-format msgid "" "An error occurred, but I do not know how to handle it nicely.\n" "Continue at your own risk." msgstr "" "Ocorreu um erro, mas não se sabe bem como o resolver.\n" "Continue a seu próprio risco." #: steps.pm:433 #, c-format msgid "" "Some important packages did not get installed properly.\n" "Either your cdrom drive or your cdrom is defective.\n" "Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" "\"\n" msgstr "" "Alguns pacotes importantes não foram devidamente instalados.\n" "O seu controlador de cdrom ou o seu cdrom está defeituoso.\n" "Verifique o cdrom num computador instalado usando \"rpm -qpl media/main/*.rpm" "\"\n" #: steps_auto_install.pm:71 steps_stdio.pm:27 #, c-format msgid "Entering step `%s'\n" msgstr "A entrar na etapa `%s'\n" #: steps_curses.pm:22 #, c-format msgid "Mandriva Linux Installation %s" msgstr "Instalação Mandriva Linux %s" #: steps_curses.pm:32 #, c-format msgid "<Tab>/<Alt-Tab> between elements" msgstr "<Tab>/<Alt-Tab> entre elementos" #: steps_gtk.pm:189 #, c-format msgid "" "Your system is low on resources. You may have some problem installing\n" "Mandriva Linux. If that occurs, you can try a text install instead. For " "this,\n" "press `F1' when booting on CDROM, then enter `text'." msgstr "" "O seu sistema é baixo em recursos. Pode ter algum problema ao instalar\n" "o Mandriva Linux. Se isso ocorrer, pode tentar uma instalação em modo " "texto.\n" "Para isso, prima `F1' quando arrancar do CDROM, e depois digite `text'." #: steps_gtk.pm:256 steps_interactive.pm:435 steps_interactive.pm:564 #: steps_list.pm:30 #, c-format msgid "Package Group Selection" msgstr "Selecção dos Grupos de Pacotes" #: steps_gtk.pm:277 steps_interactive.pm:581 #, c-format msgid "Individual package selection" msgstr "Selecção individual de pacotes" #: steps_gtk.pm:299 steps_interactive.pm:507 #, c-format msgid "Total size: %d / %d MB" msgstr "Tamanho total: %d / %d MB" #: steps_gtk.pm:344 #, c-format msgid "Bad package" msgstr "Pacote danificado" #: steps_gtk.pm:346 #, c-format msgid "Version: " msgstr "Versão: " #: steps_gtk.pm:347 #, c-format msgid "Size: " msgstr "Tamanho: " #: steps_gtk.pm:347 #, c-format msgid "%d KB\n" msgstr "%d KB\n" #: steps_gtk.pm:348 #, c-format msgid "Importance: " msgstr "Importância: " #: steps_gtk.pm:382 #, c-format msgid "You can not select/unselect this package" msgstr "Não pode seleccionar/desseleccionar este pacote" #: steps_gtk.pm:386 #, c-format msgid "due to missing %s" msgstr "devido a faltar %s" #: steps_gtk.pm:387 #, c-format msgid "due to unsatisfied %s" msgstr "devido a %s insatisfeitas" #: steps_gtk.pm:388 #, c-format msgid "trying to promote %s" msgstr "a tentar promover %s" #: steps_gtk.pm:389 #, c-format msgid "in order to keep %s" msgstr "para manter %s" #: steps_gtk.pm:394 #, c-format msgid "" "You can not select this package as there is not enough space left to install " "it" msgstr "Não pode seleccionar este pacote pois não existe espaço livre para o instalar" #: steps_gtk.pm:397 #, c-format msgid "The following packages are going to be installed" msgstr "Os seguintes pacotes irão ser instalados" #: steps_gtk.pm:398 #, c-format msgid "The following packages are going to be removed" msgstr "Os seguintes pacotes irão ser removidos" #: steps_gtk.pm:423 #, c-format msgid "This is a mandatory package, it can not be unselected" msgstr "Este é um pacote obrigatório, não pode ser desseleccionado" #: steps_gtk.pm:425 #, c-format msgid "You can not unselect this package. It is already installed" msgstr "Não pode desseleccionar este pacote. Já se encontra instalado" #: steps_gtk.pm:427 #, c-format msgid "You can not unselect this package. It must be upgraded" msgstr "Não pode desseleccionar este pacote. Tem que ser actualizado" #: steps_gtk.pm:431 #, c-format msgid "Show automatically selected packages" msgstr "Mostrar pacotes seleccionados automaticamente" #: steps_gtk.pm:433 #, c-format msgid "Install" msgstr "Instalar" #: steps_gtk.pm:436 #, c-format msgid "Load/Save selection" msgstr "Carregar/Gravar selecção" #: steps_gtk.pm:437 #, c-format msgid "Updating package selection" msgstr "A actualizar selecção de pacotes" #: steps_gtk.pm:442 #, c-format msgid "Minimal install" msgstr "Instalação mínima" #: steps_gtk.pm:456 #, c-format msgid "Software Management" msgstr "Gestão de Programas" #: steps_gtk.pm:456 steps_interactive.pm:393 #, c-format msgid "Choose the packages you want to install" msgstr "Escolha os pacotes que deseja instalar" #: steps_gtk.pm:473 steps_interactive.pm:595 steps_list.pm:32 #, c-format msgid "Installing" msgstr "Instalação" #: steps_gtk.pm:499 #, c-format msgid "No details" msgstr "Sem detalhes" #: steps_gtk.pm:514 #, c-format msgid "Time remaining " msgstr "Tempo restante " #: steps_gtk.pm:515 #, c-format msgid "Estimating" msgstr "A estimar" #: steps_gtk.pm:542 #, c-format msgid "%d package" msgid_plural "%d packages" msgstr[0] "%d pacote" msgstr[1] "%d pacotes" #: steps_gtk.pm:588 steps_interactive.pm:782 steps_list.pm:43 #, c-format msgid "Summary" msgstr "Sumário" #: steps_gtk.pm:605 #, c-format msgid "Configure" msgstr "Configurar" #: steps_gtk.pm:622 steps_interactive.pm:778 steps_interactive.pm:934 #, c-format msgid "not configured" msgstr "não configurado" #: steps_gtk.pm:658 steps_interactive.pm:278 #, c-format msgid "" "The following installation media have been found.\n" "If you want to skip some of them, you can unselect them now." msgstr "" "A seguinte média de instalação foi encontrada.\n" "Se quer evitar alguns deles, pode desmarcá-los agora." #: steps_gtk.pm:667 steps_interactive.pm:284 #, c-format msgid "" "You have the option to copy the contents of the CDs onto the hard drive " "before installation.\n" "It will then continue from the hard drive and the packages will remain " "available once the system is fully installed." msgstr "" "Tem a opção de copiar o conteúdo dos CDs para o disco rígido antes da " "instalação.\n" "Irá continuar a partir do disco rígido e os pacotes irão permanecer " "disponíveis assim que o sistema estiver instalado." #: steps_gtk.pm:669 steps_interactive.pm:286 #, c-format msgid "Copy whole CDs" msgstr "Copiar todos os CDs" #: steps_interactive.pm:38 #, c-format msgid "An error occurred" msgstr "Ocorreu um erro" #: steps_interactive.pm:97 #, c-format msgid "Please choose your keyboard layout." msgstr "Por favor escolha o tipo de teclado." #: steps_interactive.pm:99 #, c-format msgid "Here is the full list of available keyboards" msgstr "Aqui está a lista completa dos teclados disponíveis" #: steps_interactive.pm:129 #, c-format msgid "Install/Upgrade" msgstr "Instalar/Actualizar" #: steps_interactive.pm:130 #, c-format msgid "Is this an install or an upgrade?" msgstr "Isto é uma instalação ou uma actualização?" #: steps_interactive.pm:134 #, c-format msgid "" "_: This is a noun:\n" "Install" msgstr "Instalar" #: steps_interactive.pm:136 #, c-format msgid "Upgrade %s" msgstr "Actualizar %s" #: steps_interactive.pm:140 #, c-format msgid "Upgrade from a 32bit to a 64bit distribution is not supported" msgstr "A actualização de uma distribuição 32bit para uma 64bit não é suportada" #: steps_interactive.pm:144 #, c-format msgid "Upgrade from a 64bit to a 32bit distribution is not supported" msgstr "A actualização de uma distribuição 64bit para uma 32bit não é suportada" #: steps_interactive.pm:158 #, c-format msgid "Encryption key for %s" msgstr "Senha de encriptação para %s" #: steps_interactive.pm:194 #, c-format msgid "IDE" msgstr "IDE" #: steps_interactive.pm:194 #, c-format msgid "Configuring IDE" msgstr "A configurar IDE" #: steps_interactive.pm:231 #, c-format msgid "" "No free space for 1MB bootstrap! Install will continue, but to boot your " "system, you'll need to create the bootstrap partition in DiskDrake" msgstr "" "Sem espaço livre para a partição de arranque de 1MB (bootstrap)! A " "instalação irá continuar, mas para arrancar o seu sistema, irá precisar de " "criar a partição de arranque no DiskDrake" #: steps_interactive.pm:236 #, c-format msgid "" "You'll need to create a PPC PReP Boot bootstrap! Install will continue, but " "to boot your system, you'll need to create the bootstrap partition in " "DiskDrake" msgstr "" "Irá precisar de criar uma partição de arranque (PPC PReP Boot bootstrap)! A " "instalação irá continuar, mas para arrancar o seu sistema, irá precisar de " "criar a partição de arranque no DiskDrake" #: steps_interactive.pm:328 #, c-format msgid "" "Change your Cd-Rom!\n" "Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " "done.\n" "If you do not have it, press Cancel to avoid installation from this Cd-Rom." msgstr "" "Mude o seu Cd-Rom!\n" "Por favor insira o Cd-Rom \"%s\" no seu dispositivo e prima Ok.\n" "Se não tiver este Cd-Rom, prima Cancelar para evitar a instalação deste." #: steps_interactive.pm:350 #, c-format msgid "Looking for available packages..." msgstr "A procurar pacotes disponíveis..." #: steps_interactive.pm:358 #, c-format msgid "" "Your system does not have enough space left for installation or upgrade (%" "dMB > %dMB)" msgstr "" "O seu sistema não tem espaço suficiente em disco para instalar ou actualizar " "(%dMB > %dMB)" #: steps_interactive.pm:405 #, c-format msgid "" "Please choose load or save package selection.\n" "The format is the same as auto_install generated files." msgstr "" "Por favor escolha carregar ou gravar uma selecção de pacotes.\n" "O formato é o mesmo como o dos ficheiros gerados por auto_install." #: steps_interactive.pm:407 #, c-format msgid "Load" msgstr "Carregar" #: steps_interactive.pm:407 #, c-format msgid "Save" msgstr "Gravar" #: steps_interactive.pm:415 #, c-format msgid "Bad file" msgstr "Ficheiro danificado" #: steps_interactive.pm:431 #, c-format msgid "Install Mandriva KDE Desktop" msgstr "Instalar Ecrã KDE Mandriva" #: steps_interactive.pm:432 #, c-format msgid "Install Mandriva GNOME Desktop" msgstr "Instalar Ecrã GNOME Mandriva" #: steps_interactive.pm:433 #, c-format msgid "Custom install" msgstr "Instalação personalizada" #: steps_interactive.pm:436 #, c-format msgid "You can choose your workstation desktop profile: KDE, GNOME or Custom" msgstr "Pode escolher o seu perfil de ecrã: KDE, GNOME ou Personalizado" #: steps_interactive.pm:521 #, c-format msgid "Selected size is larger than available space" msgstr "O tamanho seleccionado é maior que o espaço disponível" #: steps_interactive.pm:536 #, c-format msgid "Type of install" msgstr "Tipo de instalação" #: steps_interactive.pm:537 #, c-format msgid "" "You have not selected any group of packages.\n" "Please choose the minimal installation you want:" msgstr "" "Não escolheu qualquer grupo de pacotes.\n" "Por favor escolha o tipo de instalação mínima que deseja:" #: steps_interactive.pm:540 #, c-format msgid "With X" msgstr "Com X" #: steps_interactive.pm:541 #, c-format msgid "With basic documentation (recommended!)" msgstr "Com documentação básica (recomendado!)" #: steps_interactive.pm:542 #, c-format msgid "Truly minimal install (especially no urpmi)" msgstr "Instalação mínima (especialmente sem urpmi)" #: steps_interactive.pm:596 #, c-format msgid "Preparing installation" msgstr "A preparar instalação" #: steps_interactive.pm:604 #, c-format msgid "Installing package %s" msgstr "A instalar o pacote %s" #: steps_interactive.pm:628 #, c-format msgid "There was an error ordering packages:" msgstr "Ocorreu um erro ao ordenar os pacotes:" #: steps_interactive.pm:628 #, c-format msgid "Go on anyway?" msgstr "Continuar mesmo assim?" #: steps_interactive.pm:632 #, c-format msgid "Retry" msgstr "Tentar novamente" #: steps_interactive.pm:633 #, c-format msgid "Skip this package" msgstr "Saltar este pacote" #: steps_interactive.pm:634 #, c-format msgid "Skip all packages from medium \"%s\"" msgstr "Saltar todos os pacotes da média \"%s\"" #: steps_interactive.pm:635 #, c-format msgid "Go back to media and packages selection" msgstr "Voltar à média e selecção de pacotes" #: steps_interactive.pm:638 #, c-format msgid "There was an error installing package %s." msgstr "Ocorreu um erro ao instalar o pacote %s." #: steps_interactive.pm:656 #, c-format msgid "Post-install configuration" msgstr "Configuração pós-instalação" #: steps_interactive.pm:663 #, c-format msgid "Please ensure the Update Modules media is in drive %s" msgstr "" "Por favor certifique-se que a média Módulos de Actualização está no " "dispositivo %s" #: steps_interactive.pm:691 steps_list.pm:47 #, c-format msgid "Updates" msgstr "Actualizações" #: steps_interactive.pm:692 #, c-format msgid "" "You now have the opportunity to download updated packages. These packages\n" "have been updated after the distribution was released. They may\n" "contain security or bug fixes.\n" "\n" "To download these packages, you will need to have a working Internet \n" "connection.\n" "\n" "Do you want to install the updates?" msgstr "" "Tem agora a possibilidade de transferir os pacotes de actualização.\n" "Estes pacotes foram actualizados após o lançamento da distribuição.\n" "Podem ter correcções de segurança ou de erros.\n" "\n" "Para transferir estes pacotes, irá precisar de uma conexão Internet activa.\n" "\n" "Deseja instalar as actualizações ?" #: steps_interactive.pm:713 #, c-format msgid "Contacting the mirror to get the list of available packages..." msgstr "A contactar o espelho para transferir a lista de pacotes disponíveis..." #: steps_interactive.pm:719 #, c-format msgid "Unable to contact mirror %s" msgstr "Não é possível contactar o espelho %s" #. -PO: example: lilo-graphic on /dev/hda1 #: steps_interactive.pm:825 #, c-format msgid "%s on %s" msgstr "%s em %s" #: steps_interactive.pm:859 steps_interactive.pm:866 steps_interactive.pm:880 #: steps_interactive.pm:898 steps_interactive.pm:913 #, c-format msgid "Hardware" msgstr "Material" #: steps_interactive.pm:881 steps_interactive.pm:899 #, c-format msgid "Sound card" msgstr "Placa de Som" #: steps_interactive.pm:902 #, c-format msgid "Do you have an ISA sound card?" msgstr "Tem alguma placa de som ISA?" #: steps_interactive.pm:904 #, c-format msgid "" "Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound " "card" msgstr "" "Execute \"alsaconf\" ou \"sndconfig\" após a instalação para configurar a " "sua placa de som" #: steps_interactive.pm:906 #, c-format msgid "No sound card detected. Try \"harddrake\" after installation" msgstr "Nenhuma placa de som detectada. Tente \"harddrake\" após a instalação" #: steps_interactive.pm:914 #, c-format msgid "Graphical interface" msgstr "Interface gráfico" #: steps_interactive.pm:921 steps_interactive.pm:932 #, c-format msgid "Network & Internet" msgstr "Rede e Internet" #: steps_interactive.pm:933 #, c-format msgid "Proxies" msgstr "Proxies" #: steps_interactive.pm:934 #, c-format msgid "configured" msgstr "configurado" #: steps_interactive.pm:944 #, c-format msgid "Security Level" msgstr "Nível de Segurança" #: steps_interactive.pm:963 #, c-format msgid "Firewall" msgstr "Firewall" #: steps_interactive.pm:967 #, c-format msgid "activated" msgstr "activado" #: steps_interactive.pm:967 #, c-format msgid "disabled" msgstr "desactivado" #: steps_interactive.pm:981 #, c-format msgid "You have not configured X. Are you sure you really want this?" msgstr "Não configurou o X. Tem certeza que deseja fazer isto?" #: steps_interactive.pm:1008 #, c-format msgid "Preparing bootloader..." msgstr "A preparar o carregador de arranque..." #: steps_interactive.pm:1018 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " "will not work for you. The install will continue, but you'll need to use " "BootX or some other means to boot your machine. The kernel argument for the " "root fs is: root=%s" msgstr "" "Parece ter uma máquina do Século Passado ou Desconhecida, o carregador de " "arranque yaboot não irá funcionar para si. A instalação irá continuar, mas " "irá precisar de usar o BootX ou algum outro meio para arrancar a sua " "máquina. O argumento do kernel para root fs é: root=%s" #: steps_interactive.pm:1024 #, c-format msgid "Do you want to use aboot?" msgstr "Deseja usar o aboot?" #: steps_interactive.pm:1027 #, c-format msgid "" "Error installing aboot, \n" "try to force installation even if that destroys the first partition?" msgstr "" "Erro ao instalar o aboot, \n" "tentar forçar a instalação mesmo que isso destrua a primeira partição?" #: steps_interactive.pm:1039 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " "restricted to the administrator." msgstr "" "Neste nível de segurança, o acesso aos ficheiros na partição do Windows é " "limitado ao administrador." #: steps_interactive.pm:1071 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "Insira uma disquete vazia no dispositivo %s" #: steps_interactive.pm:1073 #, c-format msgid "Creating auto install floppy..." msgstr "A criar disquete de auto-instalação..." #: steps_interactive.pm:1084 #, c-format msgid "" "Some steps are not completed.\n" "\n" "Do you really want to quit now?" msgstr "" "Alguns passos não estão completos.\n" "\n" "Deseja realmente sair agora?" #: steps_interactive.pm:1094 #, c-format msgid "Congratulations" msgstr "Parabéns" #: steps_interactive.pm:1098 #, c-format msgid "Reboot" msgstr "Reiniciar" #: steps_interactive.pm:1102 steps_interactive.pm:1103 #, c-format msgid "Generate auto install floppy" msgstr "Gerar disquete de auto instalação" #: steps_interactive.pm:1104 #, c-format msgid "" "The auto install can be fully automated if wanted,\n" "in that case it will take over the hard drive!!\n" "(this is meant for installing on another box).\n" "\n" "You may prefer to replay the installation.\n" msgstr "" "A auto instalação pode ser totalmente automatizada\n" "se quiser, nesse caso tomará conta do disco rígido!!\n" "(isto é feito para instalar outra máquina).\n" "\n" "Pode preferir repetir a instalação.\n" #: steps_interactive.pm:1109 #, c-format msgid "Replay" msgstr "Repetir" #: steps_interactive.pm:1109 #, c-format msgid "Automated" msgstr "Automática" #: steps_interactive.pm:1112 #, c-format msgid "Save packages selection" msgstr "Gravar selecção de pacotes" #. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! #: steps_list.pm:16 #, c-format msgid "" "_: Keep these entry short\n" "Language" msgstr "Linguagem" #: steps_list.pm:16 steps_list.pm:23 #, c-format msgid "Localization" msgstr "Localização" #: steps_list.pm:17 #, c-format msgid "" "_: Keep these entry short\n" "License" msgstr "Licença" #: steps_list.pm:18 #, c-format msgid "" "_: Keep these entry short\n" "Mouse" msgstr "Rato" #: steps_list.pm:19 steps_list.pm:20 #, c-format msgid "" "_: Keep these entry short\n" "Hard drive detection" msgstr "Detecção de discos rígidos" #: steps_list.pm:21 steps_list.pm:22 #, c-format msgid "" "_: Keep these entry short\n" "Installation class" msgstr "Classe de instalação" #: steps_list.pm:23 #, c-format msgid "" "_: Keep these entry short\n" "Keyboard" msgstr "Teclado" #: steps_list.pm:24 #, c-format msgid "" "_: Keep these entry short\n" "Security" msgstr "Segurança" #: steps_list.pm:25 #, c-format msgid "" "_: Keep these entry short\n" "Partitioning" msgstr "Particionamento" #: steps_list.pm:27 steps_list.pm:28 #, c-format msgid "" "_: Keep these entry short\n" "Formatting" msgstr "Formatação" #: steps_list.pm:29 #, c-format msgid "" "_: Keep these entry short\n" "Choosing packages" msgstr "Escolha de pacotes" #: steps_list.pm:31 #, c-format msgid "" "_: Keep these entry short\n" "Installing" msgstr "Instalação" #: steps_list.pm:34 #, c-format msgid "" "_: Keep these entry short\n" "Users" msgstr "Utilizadores" #: steps_list.pm:36 steps_list.pm:37 #, c-format msgid "" "_: Keep these entry short\n" "Networking" msgstr "Rede" #: steps_list.pm:38 steps_list.pm:39 #, c-format msgid "" "_: Keep these entry short\n" "Bootloader" msgstr "Arranque" #: steps_list.pm:40 steps_list.pm:41 #, c-format msgid "" "_: Keep these entry short\n" "Configure X" msgstr "Configuração X" #: steps_list.pm:42 #, c-format msgid "" "_: Keep these entry short\n" "Summary" msgstr "Sumário" #: steps_list.pm:44 steps_list.pm:45 #, c-format msgid "" "_: Keep these entry short\n" "Services" msgstr "Serviços" #: steps_list.pm:46 #, c-format msgid "" "_: Keep these entry short\n" "Updates" msgstr "Actualizações" #: steps_list.pm:48 #, c-format msgid "" "_: Keep these entry short\n" "Exit" msgstr "Sair"