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/actions/delete-domain-connection b/builds/vpe-router/actions/delete-domain-connection
new file mode 100755
index 0000000..5ba05f6
--- /dev/null
+++ b/builds/vpe-router/actions/delete-domain-connection
@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+import sys
+sys.path.append('lib')
+
+from charms.reactive import main
+from charms.reactive import set_state
+from charmhelpers.core.hookenv import action_fail
+
+
+"""
+`set_state` only works here because it's flushed to disk inside the `main()`
+loop. remove_state will need to be called inside the action method.
+"""
+set_state('vpe.delete-domain-connection')
+
+try:
+    main()
+except Exception as e:
+    action_fail(repr(e))