aboutsummaryrefslogtreecommitdiffstats
path: root/deployment
Commit message (Collapse)AuthorAgeFilesLines
* buildsystem: add /etc/youri/host.confNicolas Vigier2013-05-231-0/+7
| | | | | | | | | | The host.conf config file for youri contains the hostnames of the nodes that are building packages for each architecture. The variable $build_src_node has been added to buildsystem::var::scheduler to contain the hostname of the server building the initial src.rpm. The variable $build_nodes_aliases has been added to buildsystem::var::scheduler to be used to find the real hostnames of the nodes building the packages for each architecture.
* buildsystem: Change youri submit configurationNicolas Vigier2013-05-231-5/+355
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The youri submit configuration has been changed. The following two template files : - youri/submit-todo.conf - youri/submit-upload.conf have been replaced by a common template file for youri submit-todo and youri submit-upload : - youri/submit.conf This new template file does not contain any specific configuration. Instead the youri configuration is now created using informations from the following hash variables : - the $youri_conf_default hash from buildsystem::var::youri, containing default configuration for the repository, the checks, actions and posts. - the $youri_conf parameter from buildsystem::var::youri, overriding infos from the default configuration defined in $youri_conf_default. - the distros specific configuration is defined in the $distros parameter from buildsystem::var::distros. All those variables contain configuration for both youri submit-todo and youri submit-upload. This change allows moving all Mageia specific configuration outside the buildsystem module to the class mga_buildsystem::config, while still keeping common configuration in the buildsystem module. The following checks definitions have also been removed from youri submit-todo configuration, because they are not used in the current configuration : - history - precedence - section - svn The 'version' check options for infra_1 and infra_2 have been moved from youri submit-upload to submit-todo configuration.
* buildsystem: add $svn_root_packages_ssh parameterNicolas Vigier2013-05-231-1/+3
|
* buildsystem::signbot: add options for gpg key infosNicolas Vigier2013-05-231-0/+2
| | | | | Add options in buildsystem::var::signbot to select GPG key email and name.
* buildsystem: add build_nodes parameterNicolas Vigier2013-05-231-0/+4
| | | | | Add build_nodes parameter in buildsystem::var::scheduler. This parameter is a hash containing the build nodes available indexed by architecture.
* buildsystem::var::scheduler: add admin_mail parameterNicolas Vigier2013-05-231-1/+3
| | | | | The admin_mail parameter is used to select the email address sending the build failure notifications.
* buildsystem: add support for medias dependenciesNicolas Vigier2013-05-231-0/+9
| | | | | In upload.conf template for ulri config use the dependencies between medias defined in buildsystem::var::distros.
* mga_buildsystem: use updates media in infraNicolas Vigier2013-05-231-2/+2
| | | | | | | | Replace infra_*/release with infra_*/updates. The infra media is using core/updates, so we have a 'release' repository requiring an 'updates' repository. For more simplicity in media dependencies, it is replaced with an updates repository so that we have instead an 'updates' -> 'updates' medias dependency.
* buildsystem: add option to base a distribution on an otherNicolas Vigier2013-05-231-0/+10
| | | | | | | | | It is now possible to add the option 'based_on' to a distribution defined in buildystem::var::distros. This is useful for distributions like infra_1 or infra_2 which provide a new repository for an existing distribution. When repositories from an other distribution are defined in 'based_on', the repositories are linked with a symbolic link, and defined in media.cfg.
* buildsystem: don't hardcode distros in vhost_repository.confNicolas Vigier2013-05-231-0/+11
| | | | | | | | | | | | | | | | Use buildsystem::var::distros settings in vhost_repository.conf template. The URLs for the infra_1 and infra_2 repositories have been changed, and will need to be updated in urpmi configuration on servers using those repositories. The old URLs were : - http://repository.mageia.org/distrib/infra_1/ - http://repository.mageia.org/distrib/infra_2/ The new URLs are now : - http://repository.mageia.org/bootstrap/infra_1/ - http://repository.mageia.org/bootstrap/infra_2/
* buildsystem: generate mgarepo.conf using $distrosNicolas Vigier2013-05-231-2/+20
| | | | Use settings from buildsystem::var::distros to create mgarep.conf.
* Add buildsystem::var::mgarepo.Nicolas Vigier2013-05-231-0/+16
| | | | | The mgarepo.conf template is now using settings from buildsystem::var::mgarepo.
* buildsystem: use common media.cfg template for all distrosNicolas Vigier2013-05-231-6/+38
| | | | | | | The media.cfg file is now generated for all distributions now (it was only done for cauldron before). The media.cfg file is generated using the infos about the distributions and medias from the $distro parameter in buildsystem::var::distros.
* buildsystem::var::distros: change $distros structureNicolas Vigier2013-05-231-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The $distros variable is hash containing settings about the distributions. It was something like this : $distro = { 'cauldron' => { 'arch' => [ 'i586', 'x86_64' ], 'medias' => { 'core' => [ 'release' ], }, 'base_medias' => [ 'core/release' ], }, } It is now something like this : $distro = { 'cauldron' => { 'arch' => [ 'i586', 'x86_64' ], 'medias' => { 'core' => { 'repos' => { 'release' => {}, }, }, }, 'base_medias' => [ 'core/release' ], }, } This should allow setting more infos about each medias / repos, that can be used in order to generate media.cfg config files.
* buildsystem::var::distros: Add option to select archNicolas Vigier2013-05-231-0/+6
| | | | Add an option to select supported arch of a distribution.
* buildsystem: use common iurt config file for all distrosNicolas Vigier2013-05-231-0/+6
| | | | | | | | | | | All distributions now use the same template file for their iurt configuration file. The 'base_media' value has been added in the distributions configuration in buildsystem::var::distros to allow setting in iurt configuration the base_media that will be used to generate chroots. The iurt configuration now also contains all the medias in 'all_media', instead of only the 'release' medias previously.
* Create buildsystem::var::distrosNicolas Vigier2013-05-231-0/+34
| | | | | | | buildsystem::var::distros will be used to store the list of distributions and their configuration, medias, etc ... The list of distributions and medias has been removed from buildsystem::mgarepo and moved to mga_buildsystem::config.
* buildsystem: rename pkgsubmit to webstatusNicolas Vigier2013-05-231-1/+1
| | | | | | | Rename buildsystem::pkgsubmit to buildsystem::webstatus. pkgsubmit name has been used as the name of the host to submit packages, and the hostname of the web page to view the buildsystem status, but the two are different things, so they should be separated.
* buildsystem: move groups definitions to var::groupsNicolas Vigier2013-05-221-0/+5
| | | | | | Create buildsystem::var::groups to configure packagers and packagers_committers groups, and remove buildsystem::base which is now empty.
* buildsystem: move binrepo config to buildsystem::var::binrepoNicolas Vigier2013-05-221-0/+5
|
* repositories: enable commits again on /svn/packagesNicolas Vigier2013-05-221-2/+1
|
* Disable commit emails on /svn/packagesNicolas Vigier2013-05-211-1/+1
|
* restrict commits on /svn/packages to umeabotNicolas Vigier2013-05-211-0/+1
|
* websites::www: remove apache::mod::geoipNicolas Vigier2013-05-211-1/+0
| | | | | As it doesn't seem to be used (only php-geoip is used), and is not available in Mageia.
* Forward ssh port for arm1 and arm2 from alamut instead of valstarNicolas Vigier2013-05-201-14/+0
|
* dns: move www to alamutNicolas Vigier2013-05-191-2/+2
|
* lists: allow ennael to post to announce listNicolas Vigier2013-05-191-1/+1
|
* dns: add treasurer hostnameNicolas Vigier2013-05-121-1/+2
|
* repositories::svn_mirror: add treasurer repositoryNicolas Vigier2013-05-111-5/+6
|
* dns: remove commented hostnamesNicolas Vigier2013-05-111-21/+1
|
* Remove websites::maintenanceNicolas Vigier2013-05-113-112/+0
|
* repositories: add treasurer svn repositoryNicolas Vigier2013-05-111-0/+5
|
* lists: add treasurer-commits mailing listNicolas Vigier2013-05-111-0/+7
|
* Revert "website: temorarly redirect websites to champagne"Nicolas Vigier2013-05-041-3/+2
|
* website: temorarly redirect websites to champagneNicolas Vigier2013-05-041-2/+3
|
* dns: don't add temporary redirection for mirrorsNicolas Vigier2013-05-041-2/+1
| | | | To avoid problems with mirrors API
* websites::maintenance: fix path to maintenance.htmlNicolas Vigier2013-05-041-1/+1
|
* Add websites::maintenanceNicolas Vigier2013-05-043-0/+112
|
* dns: set TTL to 30 minutesNicolas Vigier2013-05-021-1/+1
|
* dns: prepare temporary redirections as commentNicolas Vigier2013-05-021-0/+19
|
* dns: gather hostnames we can redirect while LO is offlineNicolas Vigier2013-05-021-10/+5
|
* dns: update alias orderNicolas Vigier2013-05-021-3/+3
| | | | Separate gandi and LO servers aliases
* lists: allow wordpress to send to blog-moderation MLNicolas Vigier2013-04-231-0/+1
|
* lists: allow subscribers to send to i18n-reports MLNicolas Vigier2013-04-221-5/+6
|
* Send new blog post notifications to i18n-reports MLNicolas Vigier2013-04-221-1/+4
|
* rename sympa::public_restricted_list to sympa::list::public_restrictedNicolas Vigier2013-04-221-2/+2
|
* rename sympa::announce_list_email to sympa::list::announceNicolas Vigier2013-04-221-18/+18
|
* rename sympa::public_list to sympa::list::publicNicolas Vigier2013-04-221-24/+24
|
* sympa, lists: change sender_email parameter to an arrayNicolas Vigier2013-04-221-18/+18
|
* lists: add blog moderation MLNicolas Vigier2013-04-221-0/+6
|