Ubuntu Pastebin

Paste from kwm at Wed, 21 Jun 2017 16:30:58 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
@when_not 'app.installed'
function install_app() {
  # do some install
  charms.reactive set_state 'app.installed'
}

@when 'app.installed'
@when 'config.changed.foo'
function config_foo() {
  # do some config
  install_app
}
Download as text