aboutsummaryrefslogtreecommitdiffstats
path: root/charms/trusty/cassandra/lib/juju-deployer-wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'charms/trusty/cassandra/lib/juju-deployer-wrapper.py')
-rwxr-xr-xcharms/trusty/cassandra/lib/juju-deployer-wrapper.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/charms/trusty/cassandra/lib/juju-deployer-wrapper.py b/charms/trusty/cassandra/lib/juju-deployer-wrapper.py
deleted file mode 100755
index bf792f2..0000000
--- a/charms/trusty/cassandra/lib/juju-deployer-wrapper.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/python
-
-import subprocess
-import sys
-
-# Strip the -W option, as its noise messes with test output.
-args = list(sys.argv[1:])
-if '-W' in args:
- args.remove('-W')
-cmd = ['juju-deployer'] + args
-try:
- subprocess.check_output(cmd, stderr=subprocess.STDOUT)
-except subprocess.CalledProcessError as x:
- sys.stderr.write(x.output)
- sys.exit(x.returncode)