Ubuntu Pastebin

Paste from Cory at Mon, 27 Jun 2016 15:46:16 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
@when_not('installed')
def install():
    do_install()


@when('config.changed')
def update_config():
    if is_state('config.changed.version'):
        install()
    else:
        rewrite_config()
Download as text