~brianlbaird/charms/trusty/mme/trunk

« back to all changes in this revision

Viewing changes to hooks/config-changed

  • Committer: brianlbaird at gmail
  • Date: 2016-02-05 22:54:17 UTC
  • Revision ID: brianlbaird@gmail.com-20160205225417-8f89hq9ij9p2fhsy
update mme name in docker-compose.yaml

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
 
 
3
# Load modules from $CHARM_DIR/lib
 
4
import sys
 
5
sys.path.append('lib')
 
6
 
 
7
from charms.bootstrap import bootstrap_charm_deps
 
8
bootstrap_charm_deps()
 
9
 
 
10
 
 
11
# This will load and run the appropriate @hook and other decorated
 
12
# handlers from $CHARM_DIR/reactive, $CHARM_DIR/hooks/reactive,
 
13
# and $CHARM_DIR/hooks/relations.
 
14
#
 
15
# See https://jujucharms.com/docs/stable/authors-charm-building
 
16
# for more information on this pattern.
 
17
from charms.reactive import main
 
18
main()