Releasing Petals ESB projects

compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (6)

View Page History
for(item in Hudson.instance.items) {
if (item.name.startsWith("4.3.x")) {
println("------> JOB disabled: "+item.name)
println(item.name + ", JOB disabled")
item.disabled=true
item.save()
} else {
println(" JOB not disabled: "+item.name)
println(item.name + ", skipped")
}
}
{code}
{info}Caution to re-activate only Jenkins jobs that you have deactivated previously !{info}
{code}
import hudson.model.*

// For each project
for(item in Hudson.instance.items) {
if (item.name.startsWith("4.3.x")) {
println(item.name + ", JOB enabled")
item.disabled=false
item.save()
} else {
println(item.name + ", skipped")
}
}
{code}{info}

h2. Changelog