aboutsummaryrefslogtreecommitdiff
path: root/control/reset-cron.mangle
blob: 771c7734ce8e60cc5ff2c7885ebec2f42f675bf0 (plain)
1
2
3
4
5
6
7
# Reset any triggers of a job, cron triggers in particular (but not limited)

def mangle(tree):
    tag = tree.xpath('//triggers')[0]
    for t in tag:
        tag.remove(t)
    tag.text = None