Compiled charm published to cs:~nfv/vpe-router-1
Change-Id: I79a7f51de91ce7aaf17922afd966e436d7784da3
Signed-off-by: Adam Israel <adam.israel@canonical.com>
diff --git a/builds/vpe-router/hooks/install b/builds/vpe-router/hooks/install
new file mode 100755
index 0000000..d36afe1
--- /dev/null
+++ b/builds/vpe-router/hooks/install
@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+
+# Load modules from $CHARM_DIR/lib
+import sys
+sys.path.append('lib')
+
+from charms.layer import basic
+basic.bootstrap_charm_deps()
+basic.init_config_states()
+
+
+# This will load and run the appropriate @hook and other decorated
+# handlers from $CHARM_DIR/reactive, $CHARM_DIR/hooks/reactive,
+# and $CHARM_DIR/hooks/relations.
+#
+# See https://jujucharms.com/docs/stable/authors-charm-building
+# for more information on this pattern.
+from charms.reactive import main
+main()