aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/create_upload_dir.rb
Commit message (Collapse)AuthorAgeFilesLines
* buildsystem: stop using include in DSL files to avoid error on Mageia 5topic/mageia5Olivier Blin2015-11-301-2/+0
| | | | | | include is not support from DSL files in puppet 3.6 Note: DSL support is deprecated in 3.x and completely removed in 4.x
* lint fixes for buildsystemThomas Backlund2015-10-201-5/+5
|
* buildsystem::var::distros: change $distros structureNicolas Vigier2013-05-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Create buildsystem::var::distrosNicolas Vigier2013-05-231-7/+9
| | | | | | | 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.
* Make buildsystem::create_upload_dir a class instead of a defineNicolas Vigier2013-05-231-7/+8
| | | | | buildsystem::create_upload_dir is used only once, so it should be a class and not a define.
* buildsystem::create_upload_dir: remove parametersNicolas Vigier2013-05-231-8/+10
| | | | | Remove parameters for buildsystem::create_upload_dir. Instead access configuration variables directly.
* buildsystem::create_upload_dir.rb: fix define nameNicolas Vigier2013-05-231-1/+1
|
* Get config out of create_upload_dir.rbPascal Terjan2012-02-181-21/+2
|
* Start making create_upload_dir more flexiblePascal Terjan2012-02-181-17/+25
|
* Rename infra_1 media and make it depend from the base mediaPascal Terjan2012-02-161-1/+1
|
* Fix first typoPascal Terjan2012-02-131-1/+1
|
* First steps to create infra_1 distroPascal Terjan2012-02-131-0/+7
|
* Create upload tree for 1Pascal Terjan2011-06-091-1/+1
|
* - change permissions on medias directories in done to 775Nicolas Vigier2011-02-081-6/+10
| | | | | | - set group
* also created the base directory ( found after seeing lots of error on my ↵Michael Scherer2011-02-021-0/+2
| | | | puppet vm )
* - rename testing to updates-testing, as per ↵Michael Scherer2011-01-301-1/+1
| | | | https://www.mageia.org/pipermail/mageia-dev/20101130/001540.html
* - add missing directory ( produces error on submit )Michael Scherer2011-01-251-1/+1
|
* - create ~schedbot/uploads hierarchy using a ruby dsl module ( seeMichael Scherer2011-01-241-0/+23
http://projects.puppetlabs.com/projects/1/wiki/Ruby_Dsl )