Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2bb40b10 authored by Lucas Nussbaum's avatar Lucas Nussbaum
Browse files

Merge branch 'gen_puppet_base' into 'master'

[rakefile] add 'rake gen:puppet:base' to only target the first set of generators

See merge request !937
parents a5483b76 967c2c4f
No related branches found
No related tags found
1 merge request!937[rakefile] add 'rake gen:puppet:base' to only target the first set of generators
Pipeline #1099196 passed with warnings
Pipeline: Resources Explorer

#1099199

    ......@@ -229,7 +229,8 @@ namespace :gen do
    namespace :puppet do
    all_puppet_tasks = [:bindg5k, :conmang5k, :dhcpg5k, :kadeployg5k, :lanpowerg5k, :kavlang5k, :kwollectg5k, :network_monitoring, :'refapi-subset', :oxidizedg5k, :'oarsub-simplifier-aliases', :kavlanngg5k, :stitcherg5k, :clusters, :webfish]
    base_puppet_tasks = [:bindg5k, :conmang5k, :dhcpg5k, :kadeployg5k, :lanpowerg5k, :'refapi-subset', :'oarsub-simplifier-aliases', :clusters ]
    all_puppet_tasks = base_puppet_tasks + [ :kavlang5k, :kwollectg5k, :network_monitoring, :oxidizedg5k, :kavlanngg5k, :stitcherg5k, :webfish]
    all_puppet_tasks.each { |t|
    generated_desc = (t == :'refapi-subset') ? 'description' : 'configuration'
    ......@@ -255,6 +256,9 @@ namespace :gen do
    end
    }
    desc "Launch base puppet generators (#{base_puppet_tasks.map { |e| e.to_s }.join(',')})"
    task :base => base_puppet_tasks
    desc "Launch all puppet generators"
    task :all => all_puppet_tasks
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment